diff options
author | Sven Gothel <[email protected]> | 2011-02-26 22:41:04 +0100 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-02-26 22:41:04 +0100 |
commit | 10c696f7e908ccbf150838f86b286b7c383058c6 (patch) | |
tree | c39fb70e8223ae86be61c4926fdf4c91a6734c73 /src/test | |
parent | 76444dce2b678a7f6769564abac4f8a73f414609 (diff) |
Code cleanup: override, imports, StringBuilder, ..
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/com/jogamp/opengl/test/junit/util/DumpGLInfo.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/com/jogamp/opengl/test/junit/util/DumpGLInfo.java b/src/test/com/jogamp/opengl/test/junit/util/DumpGLInfo.java index d31bf3421..e49679dc3 100644 --- a/src/test/com/jogamp/opengl/test/junit/util/DumpGLInfo.java +++ b/src/test/com/jogamp/opengl/test/junit/util/DumpGLInfo.java @@ -37,7 +37,7 @@ public class DumpGLInfo implements GLEventListener { public void init(GLAutoDrawable drawable) { GL gl = drawable.getGL(); - System.err.println(JoglVersion.getInstance().getGLInfo(gl, null)); + System.err.println(JoglVersion.getGLInfo(gl, null)); } public void reshape(GLAutoDrawable drawable, int x, int y, int width, int height) { |