diff options
Diffstat (limited to 'src/jogl/classes/com/jogamp')
-rw-r--r-- | src/jogl/classes/com/jogamp/opengl/util/AnimatorBase.java | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/jogl/classes/com/jogamp/opengl/util/AnimatorBase.java b/src/jogl/classes/com/jogamp/opengl/util/AnimatorBase.java index ed23a78ba..8b4e125fc 100644 --- a/src/jogl/classes/com/jogamp/opengl/util/AnimatorBase.java +++ b/src/jogl/classes/com/jogamp/opengl/util/AnimatorBase.java @@ -100,7 +100,7 @@ public abstract class AnimatorBase implements GLAnimatorControl { protected boolean printExceptions; protected boolean exclusiveContext; protected Thread userExclusiveContextThread; - protected UncaughtGLAnimatorExceptionHandler uncaughtExceptionHandler; + protected UncaughtExceptionHandler uncaughtExceptionHandler; protected FPSCounterImpl fpsCounter = new FPSCounterImpl(); private final static Class<?> awtAnimatorImplClazz; @@ -513,12 +513,12 @@ public abstract class AnimatorBase implements GLAnimatorControl { } @Override - public final UncaughtGLAnimatorExceptionHandler getUncaughtExceptionHandler() { + public final UncaughtExceptionHandler getUncaughtExceptionHandler() { return uncaughtExceptionHandler; } @Override - public final void setUncaughtExceptionHandler(final UncaughtGLAnimatorExceptionHandler handler) { + public final void setUncaughtExceptionHandler(final UncaughtExceptionHandler handler) { uncaughtExceptionHandler = handler; } |