Skip to content
This repository was archived by the owner on Jan 22, 2025. It is now read-only.
/ jdk23u Public archive

Commit 2369d92

Browse files
committedAug 19, 2024
8336926: jdk/internal/util/ReferencedKeyTest.java can fail with ConcurrentModificationException
Backport-of: bfb75b9
1 parent 045c990 commit 2369d92

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed
 

‎src/java.base/share/classes/jdk/internal/util/ReferencedKeyMap.java

+10-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
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.
33
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
44
*
55
* This code is free software; you can redistribute it and/or modify it
@@ -219,8 +219,14 @@ public boolean containsValue(Object value) {
219219

220220
@Override
221221
public V get(Object key) {
222-
Objects.requireNonNull(key, "key must not be null");
223222
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");
224230
return map.get(lookupKey(key));
225231
}
226232

@@ -291,7 +297,7 @@ public Collection<V> values() {
291297
public Set<Entry<K, V>> entrySet() {
292298
removeStaleReferences();
293299
return filterKeySet()
294-
.map(k -> new AbstractMap.SimpleEntry<>(k, get(k)))
300+
.map(k -> new AbstractMap.SimpleEntry<>(k, getNoCheckStale(k)))
295301
.collect(Collectors.toSet());
296302
}
297303

@@ -335,7 +341,7 @@ public V replace(K key, V value) {
335341
public String toString() {
336342
removeStaleReferences();
337343
return filterKeySet()
338-
.map(k -> k + "=" + get(k))
344+
.map(k -> k + "=" + getNoCheckStale(k))
339345
.collect(Collectors.joining(", ", "{", "}"));
340346
}
341347

1 commit comments

Comments
 (1)

openjdk-notifier[bot] commented on Aug 19, 2024

@openjdk-notifier[bot]
This repository has been archived.