Skip to content

Commit f1db53c

Browse files
committed
clean up debug messages
1 parent 63f85dd commit f1db53c

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

substratevm/src/com.oracle.svm.core/src/com/oracle/svm/core/util/EnvVariableUtils.java

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,8 +51,6 @@ private static Set<String> getRequiredEnvVariableKeys() {
5151
if (OS.WINDOWS.isCurrent()) {
5252
requiredEnvVariableKeys.addAll(REQUIRED_ENV_VARIABLE_KEYS_WINDOWS);
5353
}
54-
System.out.printf("XXX cout reuired var= %s\n", requiredEnvVariableKeys);
55-
System.err.printf("XXX cerr reuired var= %s\n", requiredEnvVariableKeys);
5654
return requiredEnvVariableKeys;
5755
}
5856

@@ -89,15 +87,13 @@ public static boolean isKeyRequired(String key) {
8987

9088
private static String mapKey(String key) {
9189
if (OS.WINDOWS.isCurrent()) {
92-
System.err.println("XXX ROOT mapKey " + key + " to " + key.toUpperCase(Locale.ROOT));
9390
return key.toUpperCase(Locale.ROOT);
9491
}
9592
return key;
9693
}
9794

9895
private static boolean isKeyRequiredCondition(String key) {
9996
// LC_* are locale vars that override LANG for specific categories (or all, with LC_ALL)
100-
System.err.println("XXX cerr key " + key + " req=" + REQUIRED_ENV_VARIABLE_KEYS.contains(key));
10197
return REQUIRED_ENV_VARIABLE_KEYS.contains(key) || key.startsWith("LC_");
10298
}
10399
}

0 commit comments

Comments
 (0)