fix(gui): show java version, instead of VM version in about dialog (PR #489)

This commit is contained in:
Ahmed Ashour
2019-03-22 09:26:29 +01:00
committed by skylot
parent 650cf31562
commit 2e9039da4e
@@ -34,7 +34,7 @@ class AboutDialog extends JDialog {
version.setAlignmentX(0.5f);
String javaVm = System.getProperty("java.vm.name");
String javaVer = System.getProperty("java.vm.version");
String javaVer = System.getProperty("java.version");
javaVm = javaVm == null ? "" : javaVm;