We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c7f0064 commit df1f132Copy full SHA for df1f132
src/java.base/share/classes/sun/security/jca/Providers.java
@@ -37,7 +37,7 @@
37
public class Providers {
38
39
private static final ThreadLocal<ProviderList> threadLists =
40
- new InheritableThreadLocal<>();
+ new ThreadLocal<>();
41
42
// number of threads currently using thread-local provider lists
43
// tracked to allow an optimization if == 0
@@ -205,7 +205,7 @@ private static void changeThreadProviderList(ProviderList list) {
205
206
/**
207
* Methods to manipulate the thread local provider list. It is for use by
208
- * JAR verification (see above) and the SunJSSE FIPS mode only.
+ * JAR verification (see above).
209
*
210
* It should be used as follows:
211
0 commit comments