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/11/22 22:27:39 UTC

svn commit: r1715700 - /commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/MultiValuedMap.java

Author: tn
Date: Sun Nov 22 21:27:38 2015
New Revision: 1715700

URL: http://svn.apache.org/viewvc?rev=1715700&view=rev
Log:
Remove unused import.

Modified:
    commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/MultiValuedMap.java

Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/MultiValuedMap.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/MultiValuedMap.java?rev=1715700&r1=1715699&r2=1715700&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/MultiValuedMap.java (original)
+++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/MultiValuedMap.java Sun Nov 22 21:27:38 2015
@@ -17,7 +17,6 @@
 package org.apache.commons.collections4;
 
 import java.util.Collection;
-import java.util.Iterator;
 import java.util.Map;
 import java.util.Map.Entry;
 import java.util.Set;
@@ -301,7 +300,7 @@ public interface MultiValuedMap<K, V> {
      * will update the underlying multi-valued map, and vice versa. The map does
      * not support {@code put} or {@code putAll}, nor do its entries support
      * {@link Map.Entry#setValue setValue} and iterators support
-     * {@link Iterator#remove remove}.
+     * {@link java.util.Iterator#remove remove}.
      *
      * @return a map view of the mappings in this multi-valued map
      */