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 2013/06/16 19:47:08 UTC

svn commit: r1493544 - /commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/trie/AbstractPatriciaTrie.java

Author: tn
Date: Sun Jun 16 17:47:07 2013
New Revision: 1493544

URL: http://svn.apache.org/r1493544
Log:
Fix findbugs warning.

Modified:
    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/trie/AbstractPatriciaTrie.java
URL: http://svn.apache.org/viewvc/commons/proper/collections/trunk/src/main/java/org/apache/commons/collections4/trie/AbstractPatriciaTrie.java?rev=1493544&r1=1493543&r2=1493544&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 Sun Jun 16 17:47:07 2013
@@ -2138,7 +2138,7 @@ abstract class AbstractPatriciaTrie<K, V
         private int fixup() {
             // The trie has changed since we last found our toKey / fromKey
             if (size == - 1 || AbstractPatriciaTrie.this.modCount != expectedModCount) {
-                final Iterator<Map.Entry<K, V>> it = entrySet().iterator();
+                final Iterator<Map.Entry<K, V>> it = super.entrySet().iterator();
                 size = 0;
 
                 Map.Entry<K, V> entry = null;