File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
appui/src/org/graalvm/visualvm/modules/appui
startup/src/org/graalvm/visualvm/modules/startup Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -180,9 +180,9 @@ private static String getJavaInfo() {
180180 Properties systemProperties = System .getProperties ();
181181 String javaVersion = systemProperties .getProperty ("java.version" , "unknown" ); // NOI18N
182182 String vmName = systemProperties .getProperty ("java.vm.name" , "<not available>" ); // NOI18N
183- String vmVerison = systemProperties .getProperty ("java.vm.version" , "" ); // NOI18N
183+ String vmVersion = systemProperties .getProperty ("java.vm.version" , "" ); // NOI18N
184184 String vmInfo = systemProperties .getProperty ("java.vm.info" , "" ); // NOI18N
185- return javaVersion + "; " + vmName + " (" + vmVerison + ", " + vmInfo + ")" ;
185+ return javaVersion + "; " + vmName + " (" + vmVersion + ", " + vmInfo + ")" ;
186186 }
187187
188188 private static String getJavaVendor () {
Original file line number Diff line number Diff line change @@ -119,9 +119,9 @@ private static String getJavaInfo() {
119119 private static String getJvmInfo () {
120120 Properties systemProperties = System .getProperties ();
121121 String vmName = systemProperties .getProperty ("java.vm.name" , "unknown name" ); // NOI18N
122- String vmVerison = systemProperties .getProperty ("java.vm.version" , "" ); // NOI18N
122+ String vmVersion = systemProperties .getProperty ("java.vm.version" , "" ); // NOI18N
123123 String vmInfo = systemProperties .getProperty ("java.vm.info" , "" ); // NOI18N
124- return vmName + " (" + vmVerison + ", " + vmInfo + ")" ; // NOI18N
124+ return vmName + " (" + vmVersion + ", " + vmInfo + ")" ; // NOI18N
125125 }
126126
127127}
You can’t perform that action at this time.
0 commit comments