Bugfix: wrong log

This commit is contained in:
Laurent Clouet
2015-05-26 20:14:18 +01:00
parent 7805678ced
commit 7962369ddb

View File

@@ -101,7 +101,7 @@ public class GuiSwing extends JFrame implements Gui {
@Override @Override
public void stop() { public void stop() {
System.out.println("GuiAWT::stop()"); System.out.println("GuiSwing::stop()");
} }
@Override @Override
@@ -124,7 +124,7 @@ public class GuiSwing extends JFrame implements Gui {
this.activityWorking.setRenderedFrame(framesRendered); this.activityWorking.setRenderedFrame(framesRendered);
} }
else { else {
System.out.println("GuiAWT::AddFrameRendered() error: no working activity"); System.out.println("GuiSwing::AddFrameRendered() error: no working activity");
} }
} }
@@ -134,7 +134,7 @@ public class GuiSwing extends JFrame implements Gui {
this.activityWorking.setRemainingFrame(n); this.activityWorking.setRemainingFrame(n);
} }
else { else {
System.out.println("GuiAWT::framesRemaining(" + n + ") error: no working activity"); System.out.println("GuiSwing::framesRemaining(" + n + ") error: no working activity");
} }
} }