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() {
180
180
Properties systemProperties = System .getProperties ();
181
181
String javaVersion = systemProperties .getProperty ("java.version" , "unknown" ); // NOI18N
182
182
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
184
184
String vmInfo = systemProperties .getProperty ("java.vm.info" , "" ); // NOI18N
185
- return javaVersion + "; " + vmName + " (" + vmVerison + ", " + vmInfo + ")" ;
185
+ return javaVersion + "; " + vmName + " (" + vmVersion + ", " + vmInfo + ")" ;
186
186
}
187
187
188
188
private static String getJavaVendor () {
Original file line number Diff line number Diff line change @@ -119,9 +119,9 @@ private static String getJavaInfo() {
119
119
private static String getJvmInfo () {
120
120
Properties systemProperties = System .getProperties ();
121
121
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
123
123
String vmInfo = systemProperties .getProperty ("java.vm.info" , "" ); // NOI18N
124
- return vmName + " (" + vmVerison + ", " + vmInfo + ")" ; // NOI18N
124
+ return vmName + " (" + vmVersion + ", " + vmInfo + ")" ; // NOI18N
125
125
}
126
126
127
127
}
You can’t perform that action at this time.
0 commit comments