(@Nullable Object key)
| 4151 | } |
| 4152 | |
| 4153 | @Override |
| 4154 | public boolean containsKey(@Nullable Object key) { |
| 4155 | // does not impact recency ordering |
| 4156 | if (key == null) { |
| 4157 | return false; |
| 4158 | } |
| 4159 | int hash = hash(key); |
| 4160 | return segmentFor(hash).containsKey(key, hash); |
| 4161 | } |
| 4162 | |
| 4163 | @Override |
| 4164 | public boolean containsValue(@Nullable Object value) { |
nothing calls this directly
no test coverage detected