You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ki...@apache.org on 2013/11/04 12:39:54 UTC

svn commit: r1538565 - in /commons/proper/functor/trunk/core/src/main/java/org/apache/commons/functor/core/collection: FilteredIterable.java IsEmpty.java

Author: kinow
Date: Mon Nov  4 11:39:54 2013
New Revision: 1538565

URL: http://svn.apache.org/r1538565
Log:
Add Javadocs

Modified:
    commons/proper/functor/trunk/core/src/main/java/org/apache/commons/functor/core/collection/FilteredIterable.java
    commons/proper/functor/trunk/core/src/main/java/org/apache/commons/functor/core/collection/IsEmpty.java

Modified: commons/proper/functor/trunk/core/src/main/java/org/apache/commons/functor/core/collection/FilteredIterable.java
URL: http://svn.apache.org/viewvc/commons/proper/functor/trunk/core/src/main/java/org/apache/commons/functor/core/collection/FilteredIterable.java?rev=1538565&r1=1538564&r2=1538565&view=diff
==============================================================================
--- commons/proper/functor/trunk/core/src/main/java/org/apache/commons/functor/core/collection/FilteredIterable.java (original)
+++ commons/proper/functor/trunk/core/src/main/java/org/apache/commons/functor/core/collection/FilteredIterable.java Mon Nov  4 11:39:54 2013
@@ -28,7 +28,6 @@ import org.apache.commons.functor.core.c
  * Adds a fluent filtering API to any {@link Iterable}.
  *
  * @version $Revision$ $Date$
- *
  * @param <T> the Iterable generic type
  */
 public class FilteredIterable<T> implements Iterable<T> {

Modified: commons/proper/functor/trunk/core/src/main/java/org/apache/commons/functor/core/collection/IsEmpty.java
URL: http://svn.apache.org/viewvc/commons/proper/functor/trunk/core/src/main/java/org/apache/commons/functor/core/collection/IsEmpty.java?rev=1538565&r1=1538564&r2=1538565&view=diff
==============================================================================
--- commons/proper/functor/trunk/core/src/main/java/org/apache/commons/functor/core/collection/IsEmpty.java (original)
+++ commons/proper/functor/trunk/core/src/main/java/org/apache/commons/functor/core/collection/IsEmpty.java Mon Nov  4 11:39:54 2013
@@ -24,6 +24,8 @@ import org.apache.commons.functor.Predic
 import org.apache.commons.lang3.Validate;
 
 /**
+ * A {@link Predicate} that checks to see if the specified object is empty.
+ *
  * @param <A> the predicate argument type.
  * @version $Revision$ $Date$
  */