(@Nullable Object key)
| 4207 | } |
| 4208 | |
| 4209 | @Override |
| 4210 | public boolean containsKey(@Nullable Object key) { |
| 4211 | // does not impact recency ordering |
| 4212 | if (key == null) { |
| 4213 | return false; |
| 4214 | } |
| 4215 | int hash = hash(key); |
| 4216 | return segmentFor(hash).containsKey(key, hash); |
| 4217 | } |
| 4218 | |
| 4219 | @Override |
| 4220 | public boolean containsValue(@Nullable Object value) { |
nothing calls this directly
no test coverage detected