File tree 1 file changed +3
-3
lines changed
src/java.base/share/classes/java/lang
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright (c) 2003, 2019 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 2003, 2022 , 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
26
26
package java .lang ;
27
27
28
28
import java .text .BreakIterator ;
29
+ import java .util .HashMap ;
29
30
import java .util .HashSet ;
30
- import java .util .Hashtable ;
31
31
import java .util .Iterator ;
32
32
import java .util .Locale ;
33
33
import sun .text .Normalizer ;
@@ -89,7 +89,7 @@ final class ConditionalSpecialCasing {
89
89
};
90
90
91
91
// A hash table that contains the above entries
92
- static Hashtable <Integer , HashSet <Entry >> entryTable = new Hashtable <>();
92
+ private static final HashMap <Integer , HashSet <Entry >> entryTable = new HashMap <>();
93
93
static {
94
94
// create hashtable from the entry
95
95
for (Entry cur : entry ) {
You can’t perform that action at this time.
0 commit comments