(@Nullable Object rowKey)
| 35 | @GwtCompatible |
| 36 | abstract class AbstractTable<R, C, V> implements Table<R, C, V> { |
| 37 | @Override |
| 38 | public boolean containsRow(@Nullable Object rowKey) { |
| 39 | return Maps.safeContainsKey(rowMap(), rowKey); |
| 40 | } |
| 41 | |
| 42 | @Override |
| 43 | public boolean containsColumn(@Nullable Object columnKey) { |
nothing calls this directly
no test coverage detected