aboutsummaryrefslogtreecommitdiffstats
path: root/src/newt/classes
diff options
context:
space:
mode:
Diffstat (limited to 'src/newt/classes')
-rw-r--r--src/newt/classes/com/jogamp/newt/NewtVersion.java5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/newt/classes/com/jogamp/newt/NewtVersion.java b/src/newt/classes/com/jogamp/newt/NewtVersion.java
index 2493787d7..a11621370 100644
--- a/src/newt/classes/com/jogamp/newt/NewtVersion.java
+++ b/src/newt/classes/com/jogamp/newt/NewtVersion.java
@@ -34,7 +34,7 @@ import java.util.jar.Manifest;
public class NewtVersion extends JogampVersion {
- protected static NewtVersion jogampCommonVersionInfo;
+ protected static volatile NewtVersion jogampCommonVersionInfo;
protected NewtVersion(String packageName, Manifest mf) {
super(packageName, mf);
@@ -45,8 +45,7 @@ public class NewtVersion extends JogampVersion {
synchronized(NewtVersion.class) {
if( null == jogampCommonVersionInfo ) {
final String packageName = "com.jogamp.newt";
- final String fullClazzName = NewtVersion.class.getName();
- final Manifest mf = VersionUtil.getManifest(NewtVersion.class.getClassLoader(), fullClazzName);
+ final Manifest mf = VersionUtil.getManifest(NewtVersion.class.getClassLoader(), packageName);
jogampCommonVersionInfo = new NewtVersion(packageName, mf);
}
}