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