[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:
parent
edf3867212
commit
3c1867e231
|
@ -24,6 +24,9 @@
|
||||||
<action issue="COLLECTIONS-594" dev="ggregory" type="fix" due-to="Javen O'Neal">
|
<action issue="COLLECTIONS-594" dev="ggregory" type="fix" due-to="Javen O'Neal">
|
||||||
Web site spelling error: MultiValuedMapeList.
|
Web site spelling error: MultiValuedMapeList.
|
||||||
</action>
|
</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">
|
<action issue="COLLECTIONS-589" dev="ggregory" type="add" due-to="Gary Gregory">
|
||||||
Add null-safe MapUtils.size(Map<?, ?>) method.
|
Add null-safe MapUtils.size(Map<?, ?>) method.
|
||||||
</action>
|
</action>
|
||||||
|
|
|
@ -36,7 +36,7 @@ import org.apache.commons.collections4.FunctorException;
|
||||||
* // use catch and re-throw closure
|
* // use catch and re-throw closure
|
||||||
* java.util.List<String> strList = // some list
|
* java.util.List<String> strList = // some list
|
||||||
* try {
|
* try {
|
||||||
* CollctionUtils.forAllDo(strList, writer);
|
* CollectionUtils.forAllDo(strList, writer);
|
||||||
* } catch (FunctorException ex) {
|
* } catch (FunctorException ex) {
|
||||||
* Throwable originalError = ex.getCause();
|
* Throwable originalError = ex.getCause();
|
||||||
* // handle error
|
* // handle error
|
||||||
|
|
Loading…
Reference in New Issue