Commit 2e9039da authored by Ahmed Ashour's avatar Ahmed Ashour Committed by skylot

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

parent 650cf315
......@@ -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;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment