Fix findbugs warning.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/collections/trunk@1493544 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Thomas Neidhart 2013-06-16 17:47:07 +00:00
parent 56e4fac908
commit 136b96c803
1 changed files with 1 additions and 1 deletions

View File

@ -2138,7 +2138,7 @@ abstract class AbstractPatriciaTrie<K, V> extends AbstractBitwiseTrie<K, V> impl
private int fixup() { private int fixup() {
// The trie has changed since we last found our toKey / fromKey // The trie has changed since we last found our toKey / fromKey
if (size == - 1 || AbstractPatriciaTrie.this.modCount != expectedModCount) { 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; size = 0;
Map.Entry<K, V> entry = null; Map.Entry<K, V> entry = null;