diff options
author | Sven Gothel <[email protected]> | 2011-03-26 01:02:39 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-03-26 01:02:39 +0100 |
commit | b9aa38f304d0a4726e3a0c64d8ce7adda315baf2 (patch) | |
tree | 4bc3e458a4f89899afab8d767d647cb590640f96 | |
parent | cd71c42b6381d48b3e0cf84c3fa215a5166c50c1 (diff) |
Fix unnecessary NPE in case of unrealized GLCanvas (getRequestedCapabilities())
-rw-r--r-- | src/jogl/classes/javax/media/opengl/awt/GLCanvas.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jogl/classes/javax/media/opengl/awt/GLCanvas.java b/src/jogl/classes/javax/media/opengl/awt/GLCanvas.java index 4e6c29e01..4076dac54 100644 --- a/src/jogl/classes/javax/media/opengl/awt/GLCanvas.java +++ b/src/jogl/classes/javax/media/opengl/awt/GLCanvas.java @@ -710,7 +710,7 @@ public class GLCanvas extends Canvas implements AWTGLAutoDrawable, WindowClosing public GLCapabilitiesImmutable getRequestedGLCapabilities() { if (awtConfig == null) { - throw new GLException("No AWTGraphicsConfiguration: "+this); + return capsReqUser; } return (GLCapabilitiesImmutable)awtConfig.getRequestedCapabilities(); |