(Object key)
| 330 | } |
| 331 | |
| 332 | @Override |
| 333 | public V remove(Object key) { |
| 334 | Map<C, V> backingRowMap = backingRowMap(); |
| 335 | if (backingRowMap == null) { |
| 336 | return null; |
| 337 | } |
| 338 | V result = Maps.safeRemove(backingRowMap, key); |
| 339 | maintainEmptyInvariant(); |
| 340 | return result; |
| 341 | } |
| 342 | |
| 343 | @Override |
| 344 | public void clear() { |
nothing calls this directly
no test coverage detected