fixed echoes in the FlowOfTime class

This commit is contained in:
muskenum 2016-03-29 02:02:46 +02:00 committed by Kjistóf
parent 50456d092a
commit 10bb64282b

View File

@ -7,5 +7,11 @@ public class FlowOfTime extends Timer{
private TimerTask timeup; private TimerTask timeup;
private long gametime; private long gametime;
public void start() {} public void start()
{
Menu.addTab();
System.out.println(">" + "[" + ":" + this.getClass().getSimpleName() + "]" + Menu.tabulator + "FlowOfTime.start()");
System.out.println("<" + "[" + ":" + this.getClass().getSimpleName() + "]" + Menu.tabulator + "FlowOfTime.start()");
Menu.removeTab();
}
} }