SimpleTimer2: Removed debug print

This commit is contained in:
dev
2015-04-15 15:18:02 +00:00
parent 3a57310fbe
commit dc19d2fab3

View File

@ -136,10 +136,8 @@ public class SimpleTimer2 {
throw new IllegalArgumentException("addEvent null");
new TimedEvent(this, timeoutMs) {
long absTime = System.currentTimeMillis() + timeoutMs;
@Override
public void timeReached() {
System.out.println("Event scheduled for: " + absTime + " started at: " + System.currentTimeMillis() + ", diff: " + (System.currentTimeMillis() - absTime));
event.timeReached();
}
};