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