summaryrefslogtreecommitdiffstats
path: root/core/src/ch/asynk/gdx/boardgame/animations
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2018-11-14 00:31:54 +0100
committerJérémy Zurcher <jeremy@asynk.ch>2018-11-14 00:31:54 +0100
commit8d0a8db70967831191d051b090cea09c822e26cc (patch)
treea7f047d852776cf2475637c2d22e25de0f76358b /core/src/ch/asynk/gdx/boardgame/animations
parent53d9569112cc7a83a39c1d02c7afed26ee4e74e0 (diff)
downloadgdx-boardgame-8d0a8db70967831191d051b090cea09c822e26cc.zip
gdx-boardgame-8d0a8db70967831191d051b090cea09c822e26cc.tar.gz
AnimationBatch : remove debug System.err.println
Diffstat (limited to 'core/src/ch/asynk/gdx/boardgame/animations')
-rw-r--r--core/src/ch/asynk/gdx/boardgame/animations/AnimationBatch.java1
1 files changed, 0 insertions, 1 deletions
diff --git a/core/src/ch/asynk/gdx/boardgame/animations/AnimationBatch.java b/core/src/ch/asynk/gdx/boardgame/animations/AnimationBatch.java
index 617238a..9fdcfb9 100644
--- a/core/src/ch/asynk/gdx/boardgame/animations/AnimationBatch.java
+++ b/core/src/ch/asynk/gdx/boardgame/animations/AnimationBatch.java
@@ -59,7 +59,6 @@ public class AnimationBatch implements Animation, Pool.Poolable
@Override public boolean animate(float delta)
{
if (!completed()) {
- System.err.println("paralel");
for (Animation animation : animations) {
if (animation.animate(delta)) {
animations.remove(animation);