diff options
Diffstat (limited to 'src/net/java/games/jogl')
-rw-r--r-- | src/net/java/games/jogl/Animator.java | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/net/java/games/jogl/Animator.java b/src/net/java/games/jogl/Animator.java index 3f5bfdeb2..4c50b9362 100644 --- a/src/net/java/games/jogl/Animator.java +++ b/src/net/java/games/jogl/Animator.java @@ -145,8 +145,7 @@ public class Animator { // dependencies on the Animator's internal thread. Currently we // use a couple of heuristics to determine whether we should do // the blocking wait(). - if ((Thread.currentThread() == thread) || - (SingleThreadedWorkaround.doWorkaround() && EventQueue.isDispatchThread())) { + if ((Thread.currentThread() == thread) || EventQueue.isDispatchThread()) { return; } while (shouldStop && thread != null) { |