(ValueReference<K, V> valueReference)
| 1850 | } |
| 1851 | |
| 1852 | void reclaimValue(ValueReference<K, V> valueReference) { |
| 1853 | ReferenceEntry<K, V> entry = valueReference.getEntry(); |
| 1854 | int hash = entry.getHash(); |
| 1855 | segmentFor(hash).reclaimValue(entry.getKey(), hash, valueReference); |
| 1856 | } |
| 1857 | |
| 1858 | void reclaimKey(ReferenceEntry<K, V> entry) { |
| 1859 | int hash = entry.getHash(); |
no test coverage detected