Add explicit comment to denote idempotence of method call.

This commit is contained in:
garbagemule 2014-04-12 16:13:48 +02:00
parent 7de3e55d58
commit df9c0c2704

View File

@ -65,6 +65,7 @@ public class StartDelayTimer extends CountdownTimer implements TimerCallback {
if (super.getDuration() > 0) { if (super.getDuration() > 0) {
super.start(); super.start();
} else { } else {
// Idempotent
autoStartTimer.start(); autoStartTimer.start();
} }
} }