[COLLECTIONS-518] Revert and postpone change to 5.0.TODO.txt

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1682770 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Thomas Neidhart 2015-05-31 18:50:54 +00:00
parent 159b36e66e
commit 4c818fb356
2 changed files with 4 additions and 5 deletions

View File

@ -22,6 +22,9 @@
<body>
<release version="4.1" date="TBD" description="">
<action issue="COLLECTIONS-565" dev="tn" type="add">
Added decorators for "NavigableSet" interface.
</action>
<action issue="COLLECTIONS-464" dev="tn" type="add">
Added new class "FluentIterable" to support a fluent API for manipulating
Iterable instances. Additionally various supporting methods have been
@ -99,10 +102,6 @@
Added overloaded method "CollectionUtils#get(Enumeration, int)" and simplified
code for "CollectionUtils#get(Object, int)".
</action>
<action issue="COLLECTIONS-518" dev="tn" type="fix" due-to="Dipanjan Laha">
The abstract decorator "AbstractIterableGetMapDecorator" was not declared
abstract.
</action>
<action issue="COLLECTIONS-536" dev="tn" type="fix" due-to="Tagir Valeev">
Improved check for null input in "MapUtils#putAll(Map, Object[])".
</action>

View File

@ -31,7 +31,7 @@ import org.apache.commons.collections4.map.EntrySetToMapIteratorAdapter;
* @since 4.0
* @version $Id$
*/
public abstract class AbstractIterableGetMapDecorator<K, V> implements IterableGet<K, V> {
public class AbstractIterableGetMapDecorator<K, V> implements IterableGet<K, V> {
/** The map to decorate */
transient Map<K, V> map;