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