(ReferenceEntry<K, V> entry, V value, int weight)
| 1901 | // Guarded By Segment.this |
| 1902 | |
| 1903 | @VisibleForTesting |
| 1904 | ValueReference<K, V> newValueReference(ReferenceEntry<K, V> entry, V value, int weight) { |
| 1905 | int hash = entry.getHash(); |
| 1906 | return valueStrength.referenceValue(segmentFor(hash), entry, checkNotNull(value), weight); |
| 1907 | } |
| 1908 | |
| 1909 | int hash(@Nullable Object key) { |
| 1910 | int h = keyEquivalence.hash(key); |
nothing calls this directly
no test coverage detected