mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-26 14:24:46 +02:00
8345818: Fix SM cleanup of parsing of System property resource.bundle.debug
Reviewed-by: lancea, eirbjo
This commit is contained in:
parent
a24b08fcb0
commit
4f855d1342
1 changed files with 1 additions and 2 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue