You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ch...@apache.org on 2017/07/11 17:55:25 UTC

[40/77] [abbrv] commons-collections git commit: remove unnecessarily overridden method

remove unnecessarily overridden method

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/branches/collections_jdk5_branch@740155 13f79535-47bb-0310-9956-ffa450edef68


Project: http://git-wip-us.apache.org/repos/asf/commons-collections/repo
Commit: http://git-wip-us.apache.org/repos/asf/commons-collections/commit/dadc033a
Tree: http://git-wip-us.apache.org/repos/asf/commons-collections/tree/dadc033a
Diff: http://git-wip-us.apache.org/repos/asf/commons-collections/diff/dadc033a

Branch: refs/heads/collections_jdk5_branch
Commit: dadc033aa4f54261d755ae011fc1bfc477d8013f
Parents: 800616b
Author: Matthew Jason Benson <mb...@apache.org>
Authored: Mon Feb 2 23:42:27 2009 +0000
Committer: Matthew Jason Benson <mb...@apache.org>
Committed: Mon Feb 2 23:42:27 2009 +0000

----------------------------------------------------------------------
 .../apache/commons/collections/map/AbstractMapDecorator.java | 8 --------
 1 file changed, 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/commons-collections/blob/dadc033a/src/java/org/apache/commons/collections/map/AbstractMapDecorator.java
----------------------------------------------------------------------
diff --git a/src/java/org/apache/commons/collections/map/AbstractMapDecorator.java b/src/java/org/apache/commons/collections/map/AbstractMapDecorator.java
index 821dc95..9394775 100644
--- a/src/java/org/apache/commons/collections/map/AbstractMapDecorator.java
+++ b/src/java/org/apache/commons/collections/map/AbstractMapDecorator.java
@@ -20,8 +20,6 @@ import java.util.Collection;
 import java.util.Map;
 import java.util.Set;
 
-import org.apache.commons.collections.MapIterator;
-
 /**
  * Provides a base decorator that enables additional functionality to be added
  * to a Map via decoration.
@@ -142,10 +140,4 @@ public abstract class AbstractMapDecorator<K, V> extends AbstractIterableMap<K,
         return decorated().toString();
     }
 
-    /**
-     * {@inheritDoc}
-     */
-    public MapIterator<K, V> mapIterator() {
-        return new EntrySetToMapIteratorAdapter<K, V>(entrySet());
-    }
 }