Skip to content

Commit 5e7e2da

Browse files
author
Roger Riggs
committedNov 23, 2021
8272042: java.util.ImmutableCollections$Map1 and MapN should not be @valuebased
Reviewed-by: mchung, iris, naoto, smarks
1 parent f4dc03e commit 5e7e2da

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎src/java.base/share/classes/java/util/ImmutableCollections.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -1062,7 +1062,7 @@ public <T> T[] toArray(T[] a) {
10621062

10631063
// ---------- Map Implementations ----------
10641064

1065-
@jdk.internal.ValueBased
1065+
// Not a jdk.internal.ValueBased class; disqualified by fields in superclass AbstractMap
10661066
abstract static class AbstractImmutableMap<K,V> extends AbstractMap<K,V> implements Serializable {
10671067
@Override public void clear() { throw uoe(); }
10681068
@Override public V compute(K key, BiFunction<? super K,? super V,? extends V> rf) { throw uoe(); }
@@ -1093,7 +1093,7 @@ public V getOrDefault(Object key, V defaultValue) {
10931093
}
10941094
}
10951095

1096-
@jdk.internal.ValueBased
1096+
// Not a jdk.internal.ValueBased class; disqualified by fields in superclass AbstractMap
10971097
static final class Map1<K,V> extends AbstractImmutableMap<K,V> {
10981098
@Stable
10991099
private final K k0;
@@ -1160,7 +1160,7 @@ public int hashCode() {
11601160
* @param <K> the key type
11611161
* @param <V> the value type
11621162
*/
1163-
@jdk.internal.ValueBased
1163+
// Not a jdk.internal.ValueBased class; disqualified by fields in superclass AbstractMap
11641164
static final class MapN<K,V> extends AbstractImmutableMap<K,V> {
11651165

11661166
@Stable

0 commit comments

Comments
 (0)
Please sign in to comment.