We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e8077fd commit 672148eCopy full SHA for 672148e
src/java.base/share/classes/java/io/ObjectInputStream.java
@@ -336,12 +336,12 @@ private static class Logging {
336
}
337
338
339
- /** if true LUDCL/forName results would be cached, false by default starting Java8 */
+ /** if true LUDCL/forName results would be cached, true by default starting Java8 */
340
private static final class GetClassCachingSettingAction
341
implements PrivilegedAction<Boolean> {
342
public Boolean run() {
343
String property =
344
- System.getProperty("com.ibm.enableClassCaching", "false");
+ System.getProperty("com.ibm.enableClassCaching", "true");
345
return property.equalsIgnoreCase("true");
346
347
0 commit comments