summaryrefslogtreecommitdiffstats
path: root/src/jogl/classes/jogamp/opengl/x11
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2014-07-08 23:15:33 +0200
committerSven Gothel <[email protected]>2014-07-08 23:15:33 +0200
commit27115b5f050e881f959a33c04e7d3988bfe676bf (patch)
tree94668f339d3de88be355a20bd541c1aa4bb7403d /src/jogl/classes/jogamp/opengl/x11
parenta2b75f52db38be223261cd378a4bc330cc2d3ede (diff)
Findbugs: Use inner static class where possible
Diffstat (limited to 'src/jogl/classes/jogamp/opengl/x11')
-rw-r--r--src/jogl/classes/jogamp/opengl/x11/glx/X11ExternalGLXDrawable.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jogl/classes/jogamp/opengl/x11/glx/X11ExternalGLXDrawable.java b/src/jogl/classes/jogamp/opengl/x11/glx/X11ExternalGLXDrawable.java
index 2076ce454..d2f967a5c 100644
--- a/src/jogl/classes/jogamp/opengl/x11/glx/X11ExternalGLXDrawable.java
+++ b/src/jogl/classes/jogamp/opengl/x11/glx/X11ExternalGLXDrawable.java
@@ -104,7 +104,7 @@ public class X11ExternalGLXDrawable extends X11GLXDrawable {
throw new GLException("Should not call this");
}
- class Context extends X11GLXContext {
+ static class Context extends X11GLXContext {
Context(final X11GLXDrawable drawable, final GLContext shareWith) {
super(drawable, shareWith);
}