You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by eb...@apache.org on 2013/11/20 10:33:14 UTC

svn commit: r1543740 - in /commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4: collection/IndexedCollection.java trie/AbstractPatriciaTrie.java

Author: ebourg
Date: Wed Nov 20 09:33:14 2013
New Revision: 1543740

URL: http://svn.apache.org/r1543740
Log:
Minor changes (typo, unused import)

Modified:
    commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/collection/IndexedCollection.java
    commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/trie/AbstractPatriciaTrie.java

Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/collection/IndexedCollection.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/collection/IndexedCollection.java?rev=1543740&r1=1543739&r2=1543740&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/collection/IndexedCollection.java (original)
+++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/collection/IndexedCollection.java Wed Nov 20 09:33:14 2013
@@ -29,9 +29,9 @@ import org.apache.commons.collections4.m
  * <p>
  * Modifications made to this decorator modify the index as well as the
  * 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>
- * 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
  * the {@link Collection}.
  *

Modified: commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/trie/AbstractPatriciaTrie.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/trie/AbstractPatriciaTrie.java?rev=1543740&r1=1543739&r2=1543740&view=diff
==============================================================================
--- commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/trie/AbstractPatriciaTrie.java (original)
+++ commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/trie/AbstractPatriciaTrie.java Wed Nov 20 09:33:14 2013
@@ -31,7 +31,6 @@ import java.util.Map;
 import java.util.NoSuchElementException;
 import java.util.Set;
 import java.util.SortedMap;
-import java.util.Map.Entry;
 
 import org.apache.commons.collections4.OrderedMapIterator;
 import org.apache.commons.collections4.Trie;