Added missing initialization statement

This commit is contained in:
Trustin Lee 2009-01-20 08:35:10 +00:00
parent 11aba21615
commit e4f23c16d6
3 changed files with 3 additions and 0 deletions

View File

@ -1131,6 +1131,7 @@ public final class ConcurrentHashMap<K, V> extends AbstractMap<K, V>
currentTable = null;
nextEntry = null;
lastReturned = null;
currentKey = null;
advance();
}

View File

@ -1131,6 +1131,7 @@ public final class ConcurrentIdentityHashMap<K, V> extends AbstractMap<K, V>
currentTable = null;
nextEntry = null;
lastReturned = null;
currentKey = null;
advance();
}

View File

@ -1213,6 +1213,7 @@ public final class ConcurrentIdentityWeakHashMap<K, V> extends AbstractMap<K, V>
currentTable = null;
nextEntry = null;
lastReturned = null;
currentKey = null;
advance();
}