(Object key)
| 772 | // performing cast only when key is in backing map and has the correct type |
| 773 | |
| 774 | @SuppressWarnings("unchecked") |
| 775 | @Override |
| 776 | public Map<C, V> get(Object key) { |
| 777 | return containsRow(key) ? row((R) key) : null; |
| 778 | } |
| 779 | |
| 780 | @Override |
| 781 | public Map<C, V> remove(Object key) { |
nothing calls this directly
no test coverage detected