[COLLECTIONS-518] Make AbstractIterableGetMapDecorator abstract. Thanks to Dipanjan Laha.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1635305 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
b9284992ea
commit
939527bcc5
|
@ -0,0 +1,6 @@
|
|||
|
||||
TODOS for release 4.1:
|
||||
======================
|
||||
|
||||
- mention in the release notes that COLLECTIONS-518 might break binary and source compatibility
|
||||
but it would be unreasonable to instantiate an instance of class AbstractIterableGetMapDecorator
|
|
@ -22,6 +22,10 @@
|
|||
<body>
|
||||
|
||||
<release version="4.1" date="TBD" description="">
|
||||
<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>
|
||||
|
|
|
@ -31,7 +31,7 @@ import org.apache.commons.collections4.map.EntrySetToMapIteratorAdapter;
|
|||
* @since 4.0
|
||||
* @version $Id$
|
||||
*/
|
||||
public class AbstractIterableGetMapDecorator<K, V> implements IterableGet<K, V> {
|
||||
public abstract class AbstractIterableGetMapDecorator<K, V> implements IterableGet<K, V> {
|
||||
|
||||
/** The map to decorate */
|
||||
transient Map<K, V> map;
|
||||
|
|
Loading…
Reference in New Issue