(Object key)
| 841 | // The cast to C occurs only when the key is in the map, implying that it |
| 842 | // has the correct type. |
| 843 | @SuppressWarnings("unchecked") |
| 844 | @Override |
| 845 | public Map<R, V> get(Object key) { |
| 846 | return containsColumn(key) ? column((C) key) : null; |
| 847 | } |
| 848 | |
| 849 | @Override |
| 850 | public boolean containsKey(Object key) { |
nothing calls this directly
no test coverage detected