Skip to content
Snippets Groups Projects
Commit 10c54961 authored by Brutzman, Don's avatar Brutzman, Don
Browse files

improved java versioning information, fix indentation

parent e3836919
No related branches found
No related tags found
No related merge requests found
......@@ -73,8 +73,9 @@ public class Xj3dVersionInformation {
public static String JOGL_VERSION;
// https://docs.oracle.com/javase/tutorial/essential/environment/sysprop.html
public static final String OS_JAVA_VERSION_MESSAGE = " Operating system: " + System.getProperty("os.name") + SP + System.getProperty("os.version") + "\n" +
" Java environment: " + System.getProperty("java.vendor") + SP + JAVA_VERSION;
// https://stackoverflow.com/questions/5103121/how-to-find-the-jvm-version-from-a-program
public static final String OS_JAVA_VERSION_MESSAGE = " Operating system: " + System.getProperty("os.name") + SP + System.getProperty("os.version") + "\n" +
" Java environment: " + System.getProperty("java.runtime.name") + SP + JAVA_VERSION;
/**
* The release version, must first be initialized by class constructor. Milestone format will be
* <code>M<i>MainVersion</i>_<i>DevRelease#</i></code>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment