(K key, V value)
| 1129 | } |
| 1130 | |
| 1131 | @Override |
| 1132 | public V put(K key, V value) { |
| 1133 | checkKeyBounds(key); |
| 1134 | return m.put(key, value); |
| 1135 | } |
| 1136 | |
| 1137 | @Override |
| 1138 | public V remove(Object key) { |
nothing calls this directly
no test coverage detected