File tree Expand file tree Collapse file tree 1 file changed +0
-4
lines changed
substratevm/src/com.oracle.svm.core/src/com/oracle/svm/core/util Expand file tree Collapse file tree 1 file changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -51,8 +51,6 @@ private static Set<String> getRequiredEnvVariableKeys() {
51
51
if (OS .WINDOWS .isCurrent ()) {
52
52
requiredEnvVariableKeys .addAll (REQUIRED_ENV_VARIABLE_KEYS_WINDOWS );
53
53
}
54
- System .out .printf ("XXX cout reuired var= %s\n " , requiredEnvVariableKeys );
55
- System .err .printf ("XXX cerr reuired var= %s\n " , requiredEnvVariableKeys );
56
54
return requiredEnvVariableKeys ;
57
55
}
58
56
@@ -89,15 +87,13 @@ public static boolean isKeyRequired(String key) {
89
87
90
88
private static String mapKey (String key ) {
91
89
if (OS .WINDOWS .isCurrent ()) {
92
- System .err .println ("XXX ROOT mapKey " + key + " to " + key .toUpperCase (Locale .ROOT ));
93
90
return key .toUpperCase (Locale .ROOT );
94
91
}
95
92
return key ;
96
93
}
97
94
98
95
private static boolean isKeyRequiredCondition (String key ) {
99
96
// 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 ));
101
97
return REQUIRED_ENV_VARIABLE_KEYS .contains (key ) || key .startsWith ("LC_" );
102
98
}
103
99
}
You can’t perform that action at this time.
0 commit comments