(@Nullable Object o)
| 134 | } |
| 135 | |
| 136 | @Override |
| 137 | public boolean remove(@Nullable Object o) { |
| 138 | if (o instanceof Cell) { |
| 139 | Cell<?, ?, ?> cell = (Cell<?, ?, ?>) o; |
| 140 | Map<C, V> row = Maps.safeGet(rowMap(), cell.getRowKey()); |
| 141 | return row != null |
| 142 | && Collections2.safeRemove(row.entrySet(), Maps.immutableEntry(cell.getColumnKey(), cell.getValue())); |
| 143 | } |
| 144 | return false; |
| 145 | } |
| 146 | |
| 147 | @Override |
| 148 | public void clear() { |
nothing calls this directly
no test coverage detected