diff options
author | Sven Gothel <[email protected]> | 2014-09-14 00:44:09 +0200 |
---|---|---|
committer | Sven Gothel <[email protected]> | 2014-09-14 00:44:09 +0200 |
commit | 6afc739fc2d5e4378508f2fcdac8f3951eee879c (patch) | |
tree | 31a40e841af5d88a28ade24d3e7f0d73acd2cf98 /src/jogl/classes/com/jogamp/opengl/util | |
parent | fa0115efb3989c28af21fc5f570ae49723566107 (diff) |
FPSAnimator: Remove toString() override as accidently added in commit fa0115efb3989c28af21fc5f570ae49723566107
Diffstat (limited to 'src/jogl/classes/com/jogamp/opengl/util')
-rw-r--r-- | src/jogl/classes/com/jogamp/opengl/util/FPSAnimator.java | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/jogl/classes/com/jogamp/opengl/util/FPSAnimator.java b/src/jogl/classes/com/jogamp/opengl/util/FPSAnimator.java index 0539d2eeb..ec6c8aae7 100644 --- a/src/jogl/classes/com/jogamp/opengl/util/FPSAnimator.java +++ b/src/jogl/classes/com/jogamp/opengl/util/FPSAnimator.java @@ -399,9 +399,4 @@ public class FPSAnimator extends AnimatorBase { // end waiting if stopped as well return !drawablesEmpty && !isAnimating && isStarted(); } }; - - @Override - public String toString() { - return super.toString()+", "+task; - } } |