You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by si...@apache.org on 2011/10/25 22:27:29 UTC

svn commit: r1188891 - in /commons/proper/functor/trunk/src: changes/changes.xml main/java/org/apache/commons/functor/core/Limit.java

Author: simonetripodi
Date: Tue Oct 25 20:27:28 2011
New Revision: 1188891

URL: http://svn.apache.org/viewvc?rev=1188891&view=rev
Log:
[FUNCTOR-5] Complete the javadoc description of Limit (Contributed by Bruno P. Kinoshita)

Modified:
    commons/proper/functor/trunk/src/changes/changes.xml
    commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/core/Limit.java

Modified: commons/proper/functor/trunk/src/changes/changes.xml
URL: http://svn.apache.org/viewvc/commons/proper/functor/trunk/src/changes/changes.xml?rev=1188891&r1=1188890&r2=1188891&view=diff
==============================================================================
--- commons/proper/functor/trunk/src/changes/changes.xml (original)
+++ commons/proper/functor/trunk/src/changes/changes.xml Tue Oct 25 20:27:28 2011
@@ -23,6 +23,9 @@
   </properties>
   <body>
     <release version="1.0" date="2011-??-??" description="First release.">
+      <action dev="simonetripodi" issue="FUNCTOR-5">
+        Complete the javadoc description of Limit (Contributed by Bruno P. Kinoshita)
+      </action>
       <action dev="simonetripodi" issue="FUNCTOR-2">
         Improve Functor web page, removing Ant from building (Contributed by Bruno P. Kinoshita)
       </action>

Modified: commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/core/Limit.java
URL: http://svn.apache.org/viewvc/commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/core/Limit.java?rev=1188891&r1=1188890&r2=1188891&view=diff
==============================================================================
--- commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/core/Limit.java (original)
+++ commons/proper/functor/trunk/src/main/java/org/apache/commons/functor/core/Limit.java Tue Oct 25 20:27:28 2011
@@ -1,4 +1,5 @@
 /*
+
  * Licensed to the Apache Software Foundation (ASF) under one or more
  * contributor license agreements.  See the NOTICE file distributed with
  * this work for additional information regarding copyright ownership.
@@ -22,7 +23,8 @@ import org.apache.commons.functor.UnaryP
 
 /**
  * A predicate that returns <code>true</code>
- * the first <i>n</i> times it is invoked.
+ * the first <i>n</i> times it is invoked, and
+ * <code>false</code> thereafter.
  *
  * @since 1.0
  * @version $Revision$ $Date$