(K key, int hash, @Nullable ReferenceEntry<K, V> next)
| 2206 | } |
| 2207 | |
| 2208 | @GuardedBy("this") |
| 2209 | ReferenceEntry<K, V> newEntry(K key, int hash, @Nullable ReferenceEntry<K, V> next) { |
| 2210 | return map.entryFactory.newEntry(this, checkNotNull(key), hash, next); |
| 2211 | } |
| 2212 | |
| 2213 | /** |
| 2214 | * Copies {@code original} into a new entry chained to {@code newNext}. Returns the new entry, |
no test coverage detected