rwaldhoff 2003/01/10 17:07:13
Modified: collections/src/java/org/apache/commons/collections
CollectionUtils.java
collections/src/java/org/apache/commons/collections/comparators
BooleanComparator.java
Log:
* fix gump's javadoc warnings
* fix spelling of "acknowledgment"
* remove duplicate @author entry
Revision Changes Path
1.25 +11 -13
jakarta-commons/collections/src/java/org/apache/commons/collections/CollectionUtils.java
Index: CollectionUtils.java
===================================================================
RCS file:
/home/cvs/jakarta-commons/collections/src/java/org/apache/commons/collections/CollectionUtils.java,v
retrieving revision 1.24
retrieving revision 1.25
diff -u -r1.24 -r1.25
--- CollectionUtils.java 15 Dec 2002 13:05:03 -0000 1.24
+++ CollectionUtils.java 11 Jan 2003 01:07:13 -0000 1.25
@@ -1,13 +1,10 @@
/*
- * $Id$
- * $Revision$
- * $Date$
- *
+ * $Header$
* ====================================================================
*
* The Apache Software License, Version 1.1
*
- * Copyright (c) 2001-2002 The Apache Software Foundation. All rights
+ * Copyright (c) 2001-2003 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -23,11 +20,11 @@
* distribution.
*
* 3. The end-user documentation included with the redistribution, if
- * any, must include the following acknowlegement:
+ * any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
- * Alternately, this acknowlegement may appear in the software itself,
- * if and wherever such third-party acknowlegements normally appear.
+ * Alternately, this acknowledgment may appear in the software itself,
+ * if and wherever such third-party acknowledgments normally appear.
*
* 4. The names "The Jakarta Project", "Commons", and "Apache Software
* Foundation" must not be used to endorse or promote products derived
@@ -75,18 +72,19 @@
import org.apache.commons.collections.iterators.ArrayIterator;
import org.apache.commons.collections.iterators.EnumerationIterator;
+
/**
* A set of {@link Collection} related utility methods.
*
- * @since 1.0
+ * @since Commons Collections 1.0
+ * @version $Revision$ $Date$
+ *
* @author Rodney Waldhoff
* @author Paul Jack
* @author Stephen Colebourne
* @author Steve Downey
* @author <a href="[EMAIL PROTECTED]">Herve Quiroz</a>
* @author [EMAIL PROTECTED] (Peter)
- * @author Stephen Colebourne
- * @version $Revision$ $Date$
*/
public class CollectionUtils {
@@ -491,7 +489,7 @@
/**
* Selects all elements from inputCollection which don't match the given
predicate
- * into an output collection
+ * into an output collection.
* <p>
* A <code>null</code> predicate matches no elements.
*
@@ -508,7 +506,7 @@
/**
* Selects all elements from inputCollection which don't match the given
predicate
- * and adds them to outputCollection
+ * and adds them to outputCollection.
*
* @param inputCollection the collection to get the input from, may be null
* @param predicate the predicate to use, may be null
1.3 +4 -4
jakarta-commons/collections/src/java/org/apache/commons/collections/comparators/BooleanComparator.java
Index: BooleanComparator.java
===================================================================
RCS file:
/home/cvs/jakarta-commons/collections/src/java/org/apache/commons/collections/comparators/BooleanComparator.java,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- BooleanComparator.java 10 Jan 2003 20:21:23 -0000 1.2
+++ BooleanComparator.java 11 Jan 2003 01:07:13 -0000 1.3
@@ -89,7 +89,7 @@
/**
* Creates a <code>BooleanComparator</code>
* that sorts <code><i>trueFirst</i></code> values before
- * <code>!<i>trueFirst</i></code> values.
+ * <code>!<i>trueFirst</i></code> values.
*
* @param trueFirst when <code>true</code>, sort
* <code>true</code> {@link Boolean}s before
@@ -195,7 +195,7 @@
/**
* Returns a BooleanComparator instance that sorts
* <code><i>trueFirst</i></code> values before
- * <code>!<i>trueFirst</i></code> values.
+ * <code>!<i>trueFirst</i></code> values.
* <p />
* Clients are encouraged to use the value returned from
* this method instead of constructing a new instance
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>