(Object o)
| 206 | } |
| 207 | |
| 208 | public boolean contains(Object o) |
| 209 | { |
| 210 | if (!(o instanceof Map.Entry)) |
| 211 | { |
| 212 | return false; |
| 213 | } |
| 214 | Map.Entry entry = ( Map.Entry ) o; |
| 215 | Object key = entry.getKey(); |
| 216 | Node node = lookup(( Comparable ) entry.getValue(), |
| 217 | _VALUE); |
| 218 | |
| 219 | return (node != null) && node.getData(_KEY).equals(key); |
| 220 | } |
| 221 | |
| 222 | public boolean remove(Object o) |
| 223 | { |
nothing calls this directly
no test coverage detected