Minor changes (typo, unused import)

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1543740 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Emmanuel Bourg 2013-11-20 09:33:14 +00:00
parent 6cf4249650
commit d990feb367
2 changed files with 2 additions and 3 deletions

View File

@ -29,9 +29,9 @@ import org.apache.commons.collections4.map.MultiValueMap;
* <p> * <p>
* Modifications made to this decorator modify the index as well as the * Modifications made to this decorator modify the index as well as the
* decorated {@link Collection}. However, modifications to the underlying * decorated {@link Collection}. However, modifications to the underlying
* {@link Collection} will not updated the index and it will get out of sync. * {@link Collection} will not update the index and it will get out of sync.
* <p> * <p>
* If modification to the decorated {@link Collection} is unavoidable, then a * If modification of the decorated {@link Collection} is unavoidable, then a
* call to {@link #reindex()} will update the index to the current contents of * call to {@link #reindex()} will update the index to the current contents of
* the {@link Collection}. * the {@link Collection}.
* *

View File

@ -31,7 +31,6 @@ import java.util.Map;
import java.util.NoSuchElementException; import java.util.NoSuchElementException;
import java.util.Set; import java.util.Set;
import java.util.SortedMap; import java.util.SortedMap;
import java.util.Map.Entry;
import org.apache.commons.collections4.OrderedMapIterator; import org.apache.commons.collections4.OrderedMapIterator;
import org.apache.commons.collections4.Trie; import org.apache.commons.collections4.Trie;