(Object key)
| 185 | } |
| 186 | |
| 187 | public boolean contains(Object key) { |
| 188 | return containsKey(key); |
| 189 | } |
| 190 | |
| 191 | public boolean add(K key) { |
| 192 | return set.addAndReplace(new MyEntry(key, null)) != null; |
nothing calls this directly
no test coverage detected