I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit dc19d2fa authored by dev's avatar dev
Browse files

SimpleTimer2: Removed debug print

parent 3a57310f
No related branches found
No related tags found
No related merge requests found
......@@ -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();
}
};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment