(Object object)
| 219 | } |
| 220 | |
| 221 | @Override |
| 222 | public boolean remove(Object object) { |
| 223 | if (object instanceof Map.Entry) { |
| 224 | Map.Entry<?, ?> oEntry = (Map.Entry<?, ?>) object; |
| 225 | Entry<KT,VT> entry = associatedMap.getEntry(oEntry.getKey()); |
| 226 | if(valuesEq(entry, oEntry)) { |
| 227 | associatedMap.removeEntry(entry); |
| 228 | return true; |
| 229 | } |
| 230 | } |
| 231 | return false; |
| 232 | } |
| 233 | |
| 234 | @Override |
| 235 | public boolean contains(Object object) { |
nothing calls this directly
no test coverage detected