aboutsummaryrefslogtreecommitdiffstats
path: root/src/test
diff options
context:
space:
mode:
Diffstat (limited to 'src/test')
-rw-r--r--src/test/com/jogamp/opengl/test/junit/jogl/acore/TestGLException01NEWT.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/test/com/jogamp/opengl/test/junit/jogl/acore/TestGLException01NEWT.java b/src/test/com/jogamp/opengl/test/junit/jogl/acore/TestGLException01NEWT.java
index 83d5e9cc5..cdbe3af94 100644
--- a/src/test/com/jogamp/opengl/test/junit/jogl/acore/TestGLException01NEWT.java
+++ b/src/test/com/jogamp/opengl/test/junit/jogl/acore/TestGLException01NEWT.java
@@ -190,22 +190,22 @@ public class TestGLException01NEWT extends UITestCase {
RuntimeException exceptionAtInvoke = null;
RuntimeException exceptionAtDispose = null;
final List<AnimException> exceptionsAtGLAnimatorControl = new ArrayList<AnimException>();
- final GLAnimatorControl.UncaughtGLAnimatorExceptionHandler uncaughtGLAnimatorExceptionHandler;
+ final GLAnimatorControl.UncaughtExceptionHandler uncaughtExceptionHandler;
final Animator animator;
if( onThread ) {
animator = null;
- uncaughtGLAnimatorExceptionHandler = null;
+ uncaughtExceptionHandler = null;
} else {
animator = new Animator(glWindow);
- uncaughtGLAnimatorExceptionHandler = new GLAnimatorControl.UncaughtGLAnimatorExceptionHandler() {
+ uncaughtExceptionHandler = new GLAnimatorControl.UncaughtExceptionHandler() {
@Override
public void uncaughtException(final GLAnimatorControl animator, final GLAutoDrawable drawable, final Throwable cause) {
final AnimException ae = new AnimException(animator.getThread(), animator, drawable, cause);
exceptionsAtGLAnimatorControl.add(ae);
dumpThrowable(ae);
} };
- animator.setUncaughtExceptionHandler(uncaughtGLAnimatorExceptionHandler);
+ animator.setUncaughtExceptionHandler(uncaughtExceptionHandler);
}
glWindow.setSize(width, height);