aboutsummaryrefslogtreecommitdiffstats
path: root/src/jogl/classes/com
diff options
context:
space:
mode:
authorSven Gothel <[email protected]>2014-08-06 06:06:01 +0200
committerSven Gothel <[email protected]>2014-08-06 06:06:01 +0200
commit5c1214b26ad6c877a9c0f8099a7fc2a230a8b245 (patch)
treefe4a1015798e75b1d32cb3f7d77e7854cc8cef87 /src/jogl/classes/com
parent88eef9e4eae8e63762252f1d11bca2bd0fde809b (diff)
Bug 1039: Rename GLAnimatorControl.UncaughtGLAnimatorExceptionHandler -> GLAnimatorControl.UncaughtExceptionHandler
Diffstat (limited to 'src/jogl/classes/com')
-rw-r--r--src/jogl/classes/com/jogamp/opengl/util/AnimatorBase.java6
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;
}