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