(ValueReference<K, V> valueReference)
| 1919 | } |
| 1920 | |
| 1921 | void reclaimValue(ValueReference<K, V> valueReference) { |
| 1922 | ReferenceEntry<K, V> entry = valueReference.getEntry(); |
| 1923 | int hash = entry.getHash(); |
| 1924 | segmentFor(hash).reclaimValue(entry.getKey(), hash, valueReference); |
| 1925 | } |
| 1926 | |
| 1927 | void reclaimKey(ReferenceEntry<K, V> entry) { |
| 1928 | int hash = entry.getHash(); |
no test coverage detected