From 4b2709eb5a760f95db3d6c7ea311dbdf5b0d878f Mon Sep 17 00:00:00 2001 From: Thomas Neidhart Date: Sun, 5 May 2013 15:21:44 +0000 Subject: [PATCH] Make javadoc happy. git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1479338 13f79535-47bb-0310-9956-ffa450edef68 --- .../collections4/sequence/package-info.java | 23 ++++++++++--------- .../collections4/IteratorUtilsTest.java | 1 - 2 files changed, 12 insertions(+), 12 deletions(-) diff --git a/src/main/java/org/apache/commons/collections4/sequence/package-info.java b/src/main/java/org/apache/commons/collections4/sequence/package-info.java index 1c505dba2..6e12a28db 100644 --- a/src/main/java/org/apache/commons/collections4/sequence/package-info.java +++ b/src/main/java/org/apache/commons/collections4/sequence/package-info.java @@ -44,11 +44,12 @@ * Eugene W. Myers and described in his paper: An O(ND) * Difference Algorithm and Its Variations. This algorithm produces - * the shortest possible {@link #EditScript edit script} containing - * all the {@link #EditCommand commands} needed to transform the first sequence - * into the second one. + * the shortest possible + * {@link org.apache.commons.collections4.sequence.EditScript edit script} containing + * all the {@link org.apache.commons.collections4.sequence.EditCommand commands} + * needed to transform the first sequence into the second one. * The entry point for the user to this algorithm is the - * {@link #SequencesComparator} class. + * {@link org.apache.commons.collections4.sequence.SequencesComparator} class. *

* As explained in Gene Myers paper, the edit script is equivalent to all * other representations and contains all the needed information either @@ -57,18 +58,18 @@ *

* If the user needs a very fine grained access to the comparison result, * he needs to go through this script by providing a visitor implementing - * the {@link #CommandVisitor} interface. + * the {@link org.apache.commons.collections4.sequence.CommandVisitor} interface. *

* Sometimes however, a more synthetic approach is needed. If the user * prefers to see the differences between the two sequences as global * replacement operations acting on complete subsequences of * the original sequences, he will provide an object implementing the - * simple {@link #ReplacementsHandler} interface, using an instance of the - * {@link #ReplacementsFinder} class as a command converting layer between his - * object and the edit script. The number of objects which are common to - * both initial arrays and hence are skipped between each call to the user - * {@link ReplacementsHandler#handleReplacement handleReplacement} method is - * also provided. This allows the user to keep track of the current index in + * simple {@link org.apache.commons.collections4.sequence.ReplacementsHandler} interface, + * using an instance of the {@link org.apache.commons.collections4.sequence.ReplacementsFinder} + * class as a command converting layer between his object and the edit script. The number of + * objects which are common to both initial arrays and hence are skipped between each call to the user + * {@link org.apache.commons.collections4.sequence.ReplacementsHandler#handleReplacement handleReplacement} + * method is also provided. This allows the user to keep track of the current index in * both arrays if he needs so. * * @version $Id$ diff --git a/src/test/java/org/apache/commons/collections4/IteratorUtilsTest.java b/src/test/java/org/apache/commons/collections4/IteratorUtilsTest.java index 0a3c09e43..a1f6c0369 100644 --- a/src/test/java/org/apache/commons/collections4/IteratorUtilsTest.java +++ b/src/test/java/org/apache/commons/collections4/IteratorUtilsTest.java @@ -841,7 +841,6 @@ public class IteratorUtilsTest extends BulkTest { /** * creates an array of four Node instances, mocked by EasyMock. - * @return */ private Node[] createNodes() { final Node node1 = createMock(Node.class);