We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 578a50a + 1f35c67 commit f5d71b1Copy full SHA for f5d71b1
jcl/src/openj9.jvm/share/classes/com/ibm/jvm/Dump.java
@@ -102,8 +102,11 @@
102
* configuration.
103
*/
104
public class Dump {
105
- @SuppressWarnings("nls")
106
- private static final String SystemRequestPrefix = "z/OS".equalsIgnoreCase(System.getProperty("os.name")) ? "system:dsn=" : "system:file=";
+
+ private static final String SystemRequestPrefix =
107
+ "z/OS".equalsIgnoreCase(com.ibm.oti.vm.VM.internalGetProperties().getProperty("os.name")) //$NON-NLS-1$ //$NON-NLS-2$
108
+ ? "system:dsn=" //$NON-NLS-1$
109
+ : "system:file="; //$NON-NLS-1$
110
111
/**
112
* Trigger a java dump. A java dump is in a human-readable format, and
0 commit comments