diff options
author | Sven Gothel <[email protected]> | 2011-08-30 19:40:25 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2011-08-30 19:40:25 +0200 |
commit | 71b7087455fc23ec640d9d64342aaaaff42d3c7e (patch) | |
tree | c1db3f02a3310fb1c2b7b567c8a87985af61ea77 /src/test | |
parent | f90a7e72e957fa345575a9a5378c7f9edcbfb7ae (diff) |
TestGLDebug*: Remove Thread.dumpStack() ..
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/com/jogamp/opengl/test/junit/jogl/acore/TestGLDebug00NEWT.java | 2 | ||||
-rw-r--r-- | src/test/com/jogamp/opengl/test/junit/jogl/acore/TestGLDebug01NEWT.java | 4 |
2 files changed, 2 insertions, 4 deletions
diff --git a/src/test/com/jogamp/opengl/test/junit/jogl/acore/TestGLDebug00NEWT.java b/src/test/com/jogamp/opengl/test/junit/jogl/acore/TestGLDebug00NEWT.java index 1f8eebbc7..4e489dbb0 100644 --- a/src/test/com/jogamp/opengl/test/junit/jogl/acore/TestGLDebug00NEWT.java +++ b/src/test/com/jogamp/opengl/test/junit/jogl/acore/TestGLDebug00NEWT.java @@ -222,7 +222,7 @@ public class TestGLDebug00NEWT extends UITestCase { recSeverity== event.getDbgSeverity() ) { received = true; } - Thread.dumpStack(); + // Thread.dumpStack(); } } } diff --git a/src/test/com/jogamp/opengl/test/junit/jogl/acore/TestGLDebug01NEWT.java b/src/test/com/jogamp/opengl/test/junit/jogl/acore/TestGLDebug01NEWT.java index afddb5676..fcda5e84b 100644 --- a/src/test/com/jogamp/opengl/test/junit/jogl/acore/TestGLDebug01NEWT.java +++ b/src/test/com/jogamp/opengl/test/junit/jogl/acore/TestGLDebug01NEWT.java @@ -30,14 +30,12 @@ package com.jogamp.opengl.test.junit.jogl.acore; import java.io.IOException; -import javax.media.opengl.GL; import javax.media.opengl.GL2GL3; import javax.media.opengl.GLAutoDrawable; import javax.media.opengl.GLCapabilities; import javax.media.opengl.GLContext; import javax.media.opengl.GLDebugListener; import javax.media.opengl.GLDebugMessage; -import javax.media.opengl.GLEventListener; import javax.media.opengl.GLProfile; import javax.media.opengl.GLRunnable; @@ -184,7 +182,7 @@ public class TestGLDebug01NEWT extends UITestCase { recSeverity== event.getDbgSeverity() ) { received = true; } - Thread.dumpStack(); + // Thread.dumpStack(); } } } |