diff options
author | Sven Gothel <[email protected]> | 2014-02-16 06:32:39 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2014-02-16 06:32:39 +0100 |
commit | 86bdae8ce26d291c0096ed500581239dd2a87125 (patch) | |
tree | a4f262d90399db0b3c6a8ed9f64f17520231b914 /src/junit/com/jogamp/common/util | |
parent | 680b54bae4d59a6650a50e98edcd896ca9fe91a9 (diff) |
Bug 958 - Add support for OpenJDK version notation
Manu <[email protected]>:
In OpenJDK, Java version notation is a little different from Oracle JDK one:
OpenJDK uses "-u" instead of "_" to separate the version number from the update number, i.e. "1.7.0-u60-b04" vs "1.7.0_60-ea".
That would be nice to take this into account in the static initializer of jogamp.common.os.PlatformPropsImpl class. You could simply replace the line:
final int usIdx = JAVA_VERSION.lastIndexOf("_");
by:
final int usIdx = JAVA_VERSION.replace("-u", "_").lastIndexOf("_");
If you want to program it better, you can also test the "java.runtime.name" property that returns "OpenJDK Runtime Environment" for OpenJDK.
See also bug #944 https://jogamp.org/bugzilla/show_bug.cgi?id=944
+++
Done .. avoding the replace op.
Diffstat (limited to 'src/junit/com/jogamp/common/util')
0 files changed, 0 insertions, 0 deletions