You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@commons.apache.org by "Jack, Paul" <pj...@sfaf.org> on 2002/06/06 02:33:14 UTC

[PATCH][Collections] SequencedHashMap collection view bugs

Bugs fixed:

1.  keySet().remove(Object) incorrectly returned false after
a successful removal of a null key.

2.  The removeAll(Collection) and retainAll(Collection) methods
of the collection views (keySet, entrySet and values) were not
updating the modCount; therefore an iterator over a collection
view would not raise a ConcurrentModificationException after
those operations.

-Paul