Around line 2042, should this code
public Set entrySet() {
if (entrySet == null) {
return new EntryView(main, VALUE, INVERSEMAPENTRY);
}
return entrySet;
}
be
public Set entrySet() {
if (entrySet == null) {
entrySet = new EntryView(main, VALUE, INVERSEMAPENTRY);
}
return entrySet;
}
so it matches keySet() and values() ? Otherwise the entrySet member
variable is unused.
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]