(Object key)
| 199 | } |
| 200 | |
| 201 | public boolean remove(Object key) { |
| 202 | return set.removeAndReturn(new MyEntry(key, null)) != null; |
| 203 | } |
| 204 | |
| 205 | public Object[] toArray() { |
| 206 | return toArray(new Object[size()]); |
nothing calls this directly
no test coverage detected