Author: simonetripodi
Date: Mon Aug 22 20:10:41 2011
New Revision: 1160412

URL: http://svn.apache.org/viewvc?rev=1160412&view=rev
Log:
fixed checkstyle violation: Missing a Javadoc comment.

Modified:
    
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/Limit.java

Modified: 
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/Limit.java
URL: 
http://svn.apache.org/viewvc/commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/Limit.java?rev=1160412&r1=1160411&r2=1160412&view=diff
==============================================================================
--- 
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/Limit.java
 (original)
+++ 
commons/sandbox/functor/trunk/src/main/java/org/apache/commons/functor/core/Limit.java
 Mon Aug 22 20:10:41 2011
@@ -33,7 +33,13 @@ import org.apache.commons.functor.UnaryP
 public final class Limit implements Predicate, UnaryPredicate<Object>, 
BinaryPredicate<Object, Object> {
     // instance variables
     //---------------------------------------------------------------
+    /**
+     * The max number of times the predicate can be invoked.
+     */
     private final int max;
+    /**
+     * The current number of times the predicate has been invoked.
+     */
     private int current;
 
     /**


Reply via email to