From 10bb64282b12059ab2956f6171697429d7e221df Mon Sep 17 00:00:00 2001 From: muskenum Date: Tue, 29 Mar 2016 02:02:46 +0200 Subject: [PATCH] fixed echoes in the FlowOfTime class --- cicaprojekt/FlowOfTime.java | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/cicaprojekt/FlowOfTime.java b/cicaprojekt/FlowOfTime.java index dbf0531..218a2dc 100644 --- a/cicaprojekt/FlowOfTime.java +++ b/cicaprojekt/FlowOfTime.java @@ -7,5 +7,11 @@ public class FlowOfTime extends Timer{ private TimerTask timeup; 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(); + } }