diff options
author | Sven Gothel <[email protected]> | 2014-08-06 06:06:01 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2014-08-06 06:06:01 +0200 |
commit | 5c1214b26ad6c877a9c0f8099a7fc2a230a8b245 (patch) | |
tree | fe4a1015798e75b1d32cb3f7d77e7854cc8cef87 /src/jogl/classes/com/jogamp/opengl | |
parent | 88eef9e4eae8e63762252f1d11bca2bd0fde809b (diff) |
Bug 1039: Rename GLAnimatorControl.UncaughtGLAnimatorExceptionHandler -> GLAnimatorControl.UncaughtExceptionHandler
Diffstat (limited to 'src/jogl/classes/com/jogamp/opengl')
-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; } |