Author: tn
Date: Wed Oct 29 21:18:45 2014
New Revision: 1635305
URL: http://svn.apache.org/r1635305
Log:
[COLLECTIONS-518] Make AbstractIterableGetMapDecorator abstract. Thanks to
Dipanjan Laha.
Added:
commons/proper/collections/trunk/TODO.txt (with props)
Modified:
commons/proper/collections/trunk/src/changes/changes.xml
commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/splitmap/AbstractIterableGetMapDecorator.java
Added: commons/proper/collections/trunk/TODO.txt
URL:
http://svn.apache.org/viewvc/commons/proper/collections/trunk/TODO.txt?rev=1635305&view=auto
==============================================================================
--- commons/proper/collections/trunk/TODO.txt (added)
+++ commons/proper/collections/trunk/TODO.txt Wed Oct 29 21:18:45 2014
@@ -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
Propchange: commons/proper/collections/trunk/TODO.txt
------------------------------------------------------------------------------
svn:eol-style = native
Propchange: commons/proper/collections/trunk/TODO.txt
------------------------------------------------------------------------------
svn:keywords = Id Revision HeadURL
Propchange: commons/proper/collections/trunk/TODO.txt
------------------------------------------------------------------------------
svn:mime-type = text/plain
Modified: commons/proper/collections/trunk/src/changes/changes.xml
URL:
http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/changes/changes.xml?rev=1635305&r1=1635304&r2=1635305&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/changes/changes.xml (original)
+++ commons/proper/collections/trunk/src/changes/changes.xml Wed Oct 29
21:18:45 2014
@@ -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>
Modified:
commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/splitmap/AbstractIterableGetMapDecorator.java
URL:
http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/splitmap/AbstractIterableGetMapDecorator.java?rev=1635305&r1=1635304&r2=1635305&view=diff
==============================================================================
---
commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/splitmap/AbstractIterableGetMapDecorator.java
(original)
+++
commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/splitmap/AbstractIterableGetMapDecorator.java
Wed Oct 29 21:18:45 2014
@@ -31,7 +31,7 @@ import org.apache.commons.collections4.m
* @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;