(Object o)
| 123 | @WeakOuter |
| 124 | class CellSet extends AbstractSet<Cell<R, C, V>> { |
| 125 | @Override |
| 126 | public boolean contains(Object o) { |
| 127 | if (o instanceof Cell) { |
| 128 | Cell<?, ?, ?> cell = (Cell<?, ?, ?>) o; |
| 129 | Map<C, V> row = Maps.safeGet(rowMap(), cell.getRowKey()); |
| 130 | return row != null |
| 131 | && Collections2.safeContains(row.entrySet(), Maps.immutableEntry(cell.getColumnKey(), cell.getValue())); |
| 132 | } |
| 133 | return false; |
| 134 | } |
| 135 | |
| 136 | @Override |
| 137 | public boolean remove(@Nullable Object o) { |
nothing calls this directly
no test coverage detected