(@Nullable Object columnKey)
| 86 | } |
| 87 | |
| 88 | @Override |
| 89 | public boolean containsColumn(@Nullable Object columnKey) { |
| 90 | if (columnKey == null) { |
| 91 | return false; |
| 92 | } |
| 93 | for (Map<C, V> map : backingMap.values()) { |
| 94 | if (safeContainsKey(map, columnKey)) { |
| 95 | return true; |
| 96 | } |
| 97 | } |
| 98 | return false; |
| 99 | } |
| 100 | |
| 101 | @Override |
| 102 | public boolean containsRow(@Nullable Object rowKey) { |
nothing calls this directly
no test coverage detected