diff options
author | Sven Gothel <[email protected]> | 2011-08-31 03:25:48 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-08-31 03:25:48 +0200 |
commit | c75785dcc4758b3d865c5ccf6677389ab112d2fb (patch) | |
tree | d3c035106df01c6116c6c70f1479f8c352d74a07 /src/jogl/classes/jogamp/opengl/DesktopGLDynamicLibraryBundleInfo.java | |
parent | 490a6ebf64d767f5395554da78dda96ebb59b0fc (diff) |
DynamicLibraryBundle*: Use generics for better spec - following gluegen commit cfb9e118e020707842e6b5136b07f5ab149540c1
Diffstat (limited to 'src/jogl/classes/jogamp/opengl/DesktopGLDynamicLibraryBundleInfo.java')
-rw-r--r-- | src/jogl/classes/jogamp/opengl/DesktopGLDynamicLibraryBundleInfo.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/jogl/classes/jogamp/opengl/DesktopGLDynamicLibraryBundleInfo.java b/src/jogl/classes/jogamp/opengl/DesktopGLDynamicLibraryBundleInfo.java index 1b8c3c1e5..c0a75da23 100644 --- a/src/jogl/classes/jogamp/opengl/DesktopGLDynamicLibraryBundleInfo.java +++ b/src/jogl/classes/jogamp/opengl/DesktopGLDynamicLibraryBundleInfo.java @@ -32,9 +32,9 @@ import java.util.List; import java.util.ArrayList; public abstract class DesktopGLDynamicLibraryBundleInfo extends GLDynamicLibraryBundleInfo { - private static List/*<String>*/ glueLibNames; + private static List<String> glueLibNames; static { - glueLibNames = new ArrayList(); + glueLibNames = new ArrayList<String>(); glueLibNames.addAll(getGlueLibNamesPreload()); glueLibNames.add("jogl_desktop"); @@ -44,7 +44,7 @@ public abstract class DesktopGLDynamicLibraryBundleInfo extends GLDynamicLibrary super(); } - public final List/*<String>*/ getGlueLibNames() { + public final List<String> getGlueLibNames() { return glueLibNames; } |