mirror of
https://github.com/apache/commons-collections.git
synced 2025-03-01 22:39:08 +00:00
[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:
parent
159b36e66e
commit
4c818fb356
@ -22,6 +22,9 @@
|
|||||||
<body>
|
<body>
|
||||||
|
|
||||||
<release version="4.1" date="TBD" description="">
|
<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">
|
<action issue="COLLECTIONS-464" dev="tn" type="add">
|
||||||
Added new class "FluentIterable" to support a fluent API for manipulating
|
Added new class "FluentIterable" to support a fluent API for manipulating
|
||||||
Iterable instances. Additionally various supporting methods have been
|
Iterable instances. Additionally various supporting methods have been
|
||||||
@ -99,10 +102,6 @@
|
|||||||
Added overloaded method "CollectionUtils#get(Enumeration, int)" and simplified
|
Added overloaded method "CollectionUtils#get(Enumeration, int)" and simplified
|
||||||
code for "CollectionUtils#get(Object, int)".
|
code for "CollectionUtils#get(Object, int)".
|
||||||
</action>
|
</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">
|
<action issue="COLLECTIONS-536" dev="tn" type="fix" due-to="Tagir Valeev">
|
||||||
Improved check for null input in "MapUtils#putAll(Map, Object[])".
|
Improved check for null input in "MapUtils#putAll(Map, Object[])".
|
||||||
</action>
|
</action>
|
||||||
|
@ -31,7 +31,7 @@ import org.apache.commons.collections4.map.EntrySetToMapIteratorAdapter;
|
|||||||
* @since 4.0
|
* @since 4.0
|
||||||
* @version $Id$
|
* @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 */
|
/** The map to decorate */
|
||||||
transient Map<K, V> map;
|
transient Map<K, V> map;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user