diff options
author | Sven Gothel <[email protected]> | 2011-08-24 01:54:31 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-08-24 01:54:31 +0200 |
commit | 006f0ffdc63c35b0aed229b626db00c358c9399f (patch) | |
tree | 5fe1b8090c6530f7d96c04cd3ad4edebfa3b6a13 /src/jogl/classes/jogamp/opengl/macosx | |
parent | f91a3c7744e88c795600c8f9bb9ac6b0a279ff03 (diff) |
Cleanup: Java Generics Use and Removed Unused Methods
Diffstat (limited to 'src/jogl/classes/jogamp/opengl/macosx')
-rw-r--r-- | src/jogl/classes/jogamp/opengl/macosx/cgl/MacOSXCGLDrawableFactory.java | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jogl/classes/jogamp/opengl/macosx/cgl/MacOSXCGLDrawableFactory.java b/src/jogl/classes/jogamp/opengl/macosx/cgl/MacOSXCGLDrawableFactory.java index 3a0f28352..90232457c 100644 --- a/src/jogl/classes/jogamp/opengl/macosx/cgl/MacOSXCGLDrawableFactory.java +++ b/src/jogl/classes/jogamp/opengl/macosx/cgl/MacOSXCGLDrawableFactory.java @@ -132,8 +132,8 @@ public class MacOSXCGLDrawableFactory extends GLDrawableFactoryImpl { protected final void shutdownInstance() {} - protected List/*GLCapabilitiesImmutable*/ getAvailableCapabilitiesImpl(AbstractGraphicsDevice device) { - return new ArrayList(0); + protected List<GLCapabilitiesImmutable> getAvailableCapabilitiesImpl(AbstractGraphicsDevice device) { + return new ArrayList<GLCapabilitiesImmutable>(0); } protected GLDrawableImpl createOnscreenDrawableImpl(NativeSurface target) { |