|
1 | 1 | /*
|
2 |
| - * Copyright (c) 2023, Oracle and/or its affiliates. All rights reserved. |
| 2 | + * Copyright (c) 2023, 2024, Oracle and/or its affiliates. All rights reserved. |
3 | 3 | * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
4 | 4 | *
|
5 | 5 | * This code is free software; you can redistribute it and/or modify it
|
@@ -219,8 +219,14 @@ public boolean containsValue(Object value) {
|
219 | 219 |
|
220 | 220 | @Override
|
221 | 221 | public V get(Object key) {
|
222 |
| - Objects.requireNonNull(key, "key must not be null"); |
223 | 222 | removeStaleReferences();
|
| 223 | + return getNoCheckStale(key); |
| 224 | + } |
| 225 | + |
| 226 | + // Internal get(key) without removing stale references that would modify the keyset. |
| 227 | + // Use when iterating or streaming over the keys to avoid ConcurrentModificationException. |
| 228 | + private V getNoCheckStale(Object key) { |
| 229 | + Objects.requireNonNull(key, "key must not be null"); |
224 | 230 | return map.get(lookupKey(key));
|
225 | 231 | }
|
226 | 232 |
|
@@ -291,7 +297,7 @@ public Collection<V> values() {
|
291 | 297 | public Set<Entry<K, V>> entrySet() {
|
292 | 298 | removeStaleReferences();
|
293 | 299 | return filterKeySet()
|
294 |
| - .map(k -> new AbstractMap.SimpleEntry<>(k, get(k))) |
| 300 | + .map(k -> new AbstractMap.SimpleEntry<>(k, getNoCheckStale(k))) |
295 | 301 | .collect(Collectors.toSet());
|
296 | 302 | }
|
297 | 303 |
|
@@ -335,7 +341,7 @@ public V replace(K key, V value) {
|
335 | 341 | public String toString() {
|
336 | 342 | removeStaleReferences();
|
337 | 343 | return filterKeySet()
|
338 |
| - .map(k -> k + "=" + get(k)) |
| 344 | + .map(k -> k + "=" + getNoCheckStale(k)) |
339 | 345 | .collect(Collectors.joining(", ", "{", "}"));
|
340 | 346 | }
|
341 | 347 |
|
|
1 commit comments
openjdk-notifier[bot] commentedon Aug 19, 2024
Review
Issues