(Object key)
| 105 | } |
| 106 | |
| 107 | public V remove(Object key) { |
| 108 | MyEntry<K,V> e = set.removeAndReturn(new MyEntry(key, null)); |
| 109 | return e == null ? null : e.value; |
| 110 | } |
| 111 | |
| 112 | public void clear() { |
| 113 | set.clear(); |
nothing calls this directly
no test coverage detected