(Object o)
| 325 | } |
| 326 | |
| 327 | public boolean contains(Object o){ |
| 328 | if(o instanceof Entry) |
| 329 | { |
| 330 | Entry e = (Entry) o; |
| 331 | Entry found = entryAt(e.getKey()); |
| 332 | if(found != null && Util.equals(found.getValue(), e.getValue())) |
| 333 | return true; |
| 334 | } |
| 335 | return false; |
| 336 | } |
| 337 | }; |
| 338 | } |
| 339 |
nothing calls this directly
no test coverage detected