(K key, V value)
| 4201 | } |
| 4202 | |
| 4203 | @Override |
| 4204 | public V put(K key, V value) { |
| 4205 | checkNotNull(key); |
| 4206 | checkNotNull(value); |
| 4207 | int hash = hash(key); |
| 4208 | return segmentFor(hash).put(key, hash, value, false); |
| 4209 | } |
| 4210 | |
| 4211 | @Override |
| 4212 | public V putIfAbsent(K key, V value) { |
nothing calls this directly
no test coverage detected