Author: ggregory
Date: Fri Oct 21 05:53:10 2016
New Revision: 1765914

URL: http://svn.apache.org/viewvc?rev=1765914&view=rev
Log:
[COLLECTIONS-597] Correction of Javadoc for 
org.apache.commons.collections4.functors.CatchAndRethrowClosure. Reported by 
Enrique.

Modified:
    commons/proper/collections/trunk/src/changes/changes.xml
    
commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/functors/CatchAndRethrowClosure.java

Modified: commons/proper/collections/trunk/src/changes/changes.xml
URL: 
http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/changes/changes.xml?rev=1765914&r1=1765913&r2=1765914&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/changes/changes.xml (original)
+++ commons/proper/collections/trunk/src/changes/changes.xml Fri Oct 21 
05:53:10 2016
@@ -24,6 +24,9 @@
     <action issue="COLLECTIONS-594" dev="ggregory" type="fix" due-to="Javen 
O'Neal">
       Web site spelling error: MultiValuedMapeList. 
     </action>
+    <action issue="COLLECTIONS-597" dev="ggregory" type="fix" due-to="Enrique">
+       Correction of javadoc for 
org.apache.commons.collections4.functors.CatchAndRethrowClosure.
+    </action>
     <action issue="COLLECTIONS-589" dev="ggregory" type="add" due-to="Gary 
Gregory">
       Add null-safe MapUtils.size(Map&lt;?, ?>) method. 
     </action>

Modified: 
commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/functors/CatchAndRethrowClosure.java
URL: 
http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/functors/CatchAndRethrowClosure.java?rev=1765914&r1=1765913&r2=1765914&view=diff
==============================================================================
--- 
commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/functors/CatchAndRethrowClosure.java
 (original)
+++ 
commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/functors/CatchAndRethrowClosure.java
 Fri Oct 21 05:53:10 2016
@@ -36,7 +36,7 @@ import org.apache.commons.collections4.F
  * // use catch and re-throw closure
  * java.util.List<String> strList = // some list
  * try {
- *     CollctionUtils.forAllDo(strList, writer);
+ *     CollectionUtils.forAllDo(strList, writer);
  * } catch (FunctorException ex) {
  *     Throwable originalError = ex.getCause();
  *     // handle error


Reply via email to