File tree 1 file changed +3
-3
lines changed
src/java.base/share/classes/java/io
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 25
25
26
26
/*
27
27
* ===========================================================================
28
- * (c) Copyright IBM Corp. 2018,2018 All Rights Reserved
28
+ * (c) Copyright IBM Corp. 2018, 2019 All Rights Reserved
29
29
* ===========================================================================
30
30
*/
31
31
@@ -336,12 +336,12 @@ private static class Logging {
336
336
}
337
337
338
338
339
- /** if true LUDCL/forName results would be cached, true by default starting Java8 */
339
+ /** if true LUDCL/forName results would be cached, false by default starting Java8 */
340
340
private static final class GetClassCachingSettingAction
341
341
implements PrivilegedAction <Boolean > {
342
342
public Boolean run () {
343
343
String property =
344
- System .getProperty ("com.ibm.enableClassCaching" , "true " );
344
+ System .getProperty ("com.ibm.enableClassCaching" , "false " );
345
345
return property .equalsIgnoreCase ("true" );
346
346
}
347
347
}
You can’t perform that action at this time.
0 commit comments