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