diff --git a/src/java/org/apache/commons/collections/IteratorUtils.java b/src/java/org/apache/commons/collections/IteratorUtils.java index 7acd3a356..c5a9428f0 100644 --- a/src/java/org/apache/commons/collections/IteratorUtils.java +++ b/src/java/org/apache/commons/collections/IteratorUtils.java @@ -1,7 +1,7 @@ /* - * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/IteratorUtils.java,v 1.2 2002/08/17 22:14:22 scolebourne Exp $ - * $Revision: 1.2 $ - * $Date: 2002/08/17 22:14:22 $ + * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/IteratorUtils.java,v 1.3 2002/08/19 21:56:18 pjack Exp $ + * $Revision: 1.3 $ + * $Date: 2002/08/19 21:56:18 $ * * ==================================================================== * @@ -91,7 +91,7 @@ import org.apache.commons.collections.iterators.TransformIterator; * org.apache.commons.collections.iterators subpackage. * * @author Stephen Colebourne - * @version $Id: IteratorUtils.java,v 1.2 2002/08/17 22:14:22 scolebourne Exp $ + * @version $Id: IteratorUtils.java,v 1.3 2002/08/19 21:56:18 pjack Exp $ * @since 2.1 */ public class IteratorUtils { @@ -282,7 +282,7 @@ public class IteratorUtils { * contained in a collection of ordered {@link Iterator}s. *

* Given two ordered {@link Iterator}s A and B, - * the {@link #next} method will return the lesser of + * the {@link Iterator#next()} method will return the lesser of * A.next() and B.next(). *

* The comparator is optional. If null is specified then natural order is used. @@ -302,7 +302,7 @@ public class IteratorUtils { * contained in an array of {@link Iterator}s. *

* Given two ordered {@link Iterator}s A and B, - * the {@link #next} method will return the lesser of + * the {@link Iterator#next()} method will return the lesser of * A.next() and B.next() and so on. *

* The comparator is optional. If null is specified then natural order is used. @@ -321,7 +321,7 @@ public class IteratorUtils { * contained in a collection of {@link Iterator}s. *

* Given two ordered {@link Iterator}s A and B, - * the {@link #next} method will return the lesser of + * the {@link Iterator#next()} method will return the lesser of * A.next() and B.next() and so on. *

* The comparator is optional. If null is specified then natural order is used. diff --git a/src/java/org/apache/commons/collections/MapUtils.java b/src/java/org/apache/commons/collections/MapUtils.java index 935847ded..9f7d6f9b8 100644 --- a/src/java/org/apache/commons/collections/MapUtils.java +++ b/src/java/org/apache/commons/collections/MapUtils.java @@ -1,7 +1,7 @@ /* - * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/MapUtils.java,v 1.11 2002/08/18 20:11:37 pjack Exp $ - * $Revision: 1.11 $ - * $Date: 2002/08/18 20:11:37 $ + * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//collections/src/java/org/apache/commons/collections/MapUtils.java,v 1.12 2002/08/19 21:56:18 pjack Exp $ + * $Revision: 1.12 $ + * $Date: 2002/08/19 21:56:18 $ * * ==================================================================== * @@ -73,7 +73,6 @@ import java.util.*; * It also provides the following decorators: * *