[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
This commit is contained in:
Gary D. Gregory 2016-10-21 05:53:10 +00:00
parent edf3867212
commit 3c1867e231
2 changed files with 4 additions and 1 deletions

View File

@ -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>

View File

@ -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