(Object o)
| 110 | } |
| 111 | |
| 112 | public boolean contains(Object o) { |
| 113 | return (o instanceof Entry<?,?>) |
| 114 | && containsKey(((Entry<?,?>)o).getKey()); |
| 115 | } |
| 116 | |
| 117 | public boolean add(Entry<K, V> e) { |
| 118 | return put(e.getKey(), e.getValue()) != null; |
nothing calls this directly
no test coverage detected