You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by tn...@apache.org on 2015/05/31 20:50:54 UTC

svn commit: r1682770 - in /commons/proper/collections/trunk/src: changes/changes.xml main/java/org/apache/commons/collections4/splitmap/AbstractIterableGetMapDecorator.java

Author: tn
Date: Sun May 31 18:50:54 2015
New Revision: 1682770

URL: http://svn.apache.org/r1682770
Log:
[COLLECTIONS-518] Revert and postpone change to 5.0.TODO.txt

Modified:
    commons/proper/collections/trunk/src/changes/changes.xml
    commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/splitmap/AbstractIterableGetMapDecorator.java

Modified: commons/proper/collections/trunk/src/changes/changes.xml
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/changes/changes.xml?rev=1682770&r1=1682769&r2=1682770&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/changes/changes.xml (original)
+++ commons/proper/collections/trunk/src/changes/changes.xml Sun May 31 18:50:54 2015
@@ -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>

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=1682770&r1=1682769&r2=1682770&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 Sun May 31 18:50:54 2015
@@ -31,7 +31,7 @@ import org.apache.commons.collections4.m
  * @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;