Fix hashmap insertion bug (entire bucket was getting erased in some put() operations)

This commit is contained in:
Eric Scharff 2007-10-11 17:03:51 -06:00
parent b95a573b7f
commit 15d1fe8b75

View File

@ -171,6 +171,7 @@ public class HashMap<K, V> implements Map<K, V> {
-- size;
break;
}
p = c;
}
shrink();