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