Skip to content

Commit 990c61e

Browse files
Follow up for JDK-8359732 adoption.
1 parent ef6ee3c commit 990c61e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

substratevm/src/com.oracle.svm.core/src/com/oracle/svm/core/jdk/Target_jdk_internal_util_StaticProperty.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -314,19 +314,19 @@ public static String javaPropertiesDate() {
314314
}
315315

316316
@Substitute
317-
public static String javaStdinEncoding() {
317+
public static String stdinEncoding() {
318318
assert Objects.equals(STDIN_ENCODING, SystemPropertiesSupport.singleton().getInitialProperty("stdin.encoding"));
319319
return STDIN_ENCODING;
320320
}
321321

322322
@Substitute
323-
public static String javaStdoutEncoding() {
323+
public static String stdoutEncoding() {
324324
assert Objects.equals(STDOUT_ENCODING, SystemPropertiesSupport.singleton().getInitialProperty("stdout.encoding"));
325325
return STDOUT_ENCODING;
326326
}
327327

328328
@Substitute
329-
public static String javaStderrEncoding() {
329+
public static String stderrEncoding() {
330330
assert Objects.equals(STDERR_ENCODING, SystemPropertiesSupport.singleton().getInitialProperty("stderr.encoding"));
331331
return STDERR_ENCODING;
332332
}

0 commit comments

Comments
 (0)