diff options
author | Michael Bien <[email protected]> | 2010-11-18 02:44:19 +0100 |
---|---|---|
committer | Michael Bien <[email protected]> | 2010-11-18 02:44:19 +0100 |
commit | 448d9ca99a38f4f107c86ca3475129568cd74cf7 (patch) | |
tree | f3adbd9278dec8af95ef549c19c65187431071ee /src/newt | |
parent | 7c159772fad5445d296ad0f06f07272a59325003 (diff) |
modifications due to changes in GlueGen's VersionUtil.getManifest().
made references created in double checked locks volatile.
Diffstat (limited to 'src/newt')
-rw-r--r-- | src/newt/classes/com/jogamp/newt/NewtVersion.java | 5 |
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); } } |