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