[COLLECTIONS-597] Correction of Javadoc for 
org.apache.commons.collections4.functors.CatchAndRethrowClosure. Reported by 
Enrique.

git-svn-id: 
https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1765914 
13f79535-47bb-0310-9956-ffa450edef68


Project: http://git-wip-us.apache.org/repos/asf/commons-collections/repo
Commit: 
http://git-wip-us.apache.org/repos/asf/commons-collections/commit/3c1867e2
Tree: http://git-wip-us.apache.org/repos/asf/commons-collections/tree/3c1867e2
Diff: http://git-wip-us.apache.org/repos/asf/commons-collections/diff/3c1867e2

Branch: refs/heads/master
Commit: 3c1867e231093319b1bbbe5b0362d4063517cf24
Parents: edf3867
Author: Gary D. Gregory <[email protected]>
Authored: Fri Oct 21 05:53:10 2016 +0000
Committer: Gary D. Gregory <[email protected]>
Committed: Fri Oct 21 05:53:10 2016 +0000

----------------------------------------------------------------------
 src/changes/changes.xml                                           | 3 +++
 .../commons/collections4/functors/CatchAndRethrowClosure.java     | 2 +-
 2 files changed, 4 insertions(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-collections/blob/3c1867e2/src/changes/changes.xml
----------------------------------------------------------------------
diff --git a/src/changes/changes.xml b/src/changes/changes.xml
index 7ff210a..86e2ece 100644
--- a/src/changes/changes.xml
+++ b/src/changes/changes.xml
@@ -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>

http://git-wip-us.apache.org/repos/asf/commons-collections/blob/3c1867e2/src/main/java/org/apache/commons/collections4/functors/CatchAndRethrowClosure.java
----------------------------------------------------------------------
diff --git 
a/src/main/java/org/apache/commons/collections4/functors/CatchAndRethrowClosure.java
 
b/src/main/java/org/apache/commons/collections4/functors/CatchAndRethrowClosure.java
index 2270a68..38b7fe2 100644
--- 
a/src/main/java/org/apache/commons/collections4/functors/CatchAndRethrowClosure.java
+++ 
b/src/main/java/org/apache/commons/collections4/functors/CatchAndRethrowClosure.java
@@ -36,7 +36,7 @@ import org.apache.commons.collections4.FunctorException;
  * // 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