Author: simonetripodi
Date: Fri Sep 23 22:16:41 2011
New Revision: 1175052
URL: http://svn.apache.org/viewvc?rev=1175052&view=rev
Log:
added missing javadoc comments
Modified:
commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/core/algorithm/RemoveMatching.java
Modified: commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/core/algorithm/RemoveMatching.java
URL: http://svn.apache.org/viewvc/commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/core/algorithm/RemoveMatching.java?rev=1175052&r1=1175051&r2=1175052&view=diff
==============================================================================
--- commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/core/algorithm/RemoveMatching.java
(original)
+++ commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/core/algorithm/RemoveMatching.java
Fri Sep 23 22:16:41 2011
@@ -25,6 +25,7 @@ import org.apache.commons.functor.UnaryP
/**
* Remove elements from left Iterator that match right UnaryPredicate.
*
+ * @param <T> the procedure argument type.
* @version $Revision$ $Date$
*/
public final class RemoveMatching<T>
@@ -33,6 +34,9 @@ public final class RemoveMatching<T>
* serialVersionUID declaration.
*/
private static final long serialVersionUID = -8376577687898040683L;
+ /**
+ * A static {@link RemoveMatching} instance reference.
+ */
private static final RemoveMatching<Object> INSTANCE = new RemoveMatching<Object>();
/**
|