8345818: Fix SM cleanup of parsing of System property resource.bundle.debug

Reviewed-by: lancea, eirbjo
This commit is contained in:
Roger Riggs 2024-12-10 15:16:58 +00:00
parent a24b08fcb0
commit 4f855d1342

View file

@ -3654,8 +3654,7 @@ public abstract class ResourceBundle {
}
private static final boolean TRACE_ON = Boolean.getBoolean(
System.getProperty("resource.bundle.debug", "false"));
private static final boolean TRACE_ON = Boolean.getBoolean("resource.bundle.debug");
private static void trace(String format, Object... params) {
if (TRACE_ON)