Remove accidential debug wait.
This commit is contained in:
parent
64c3d452a8
commit
7797cbd69e
1 changed files with 0 additions and 1 deletions
|
@ -272,7 +272,6 @@ public class ComboPlugin implements PluginBase, PumpInterface {
|
||||||
}
|
}
|
||||||
|
|
||||||
boolean notAUserRequest = !reason.toLowerCase().contains("user");
|
boolean notAUserRequest = !reason.toLowerCase().contains("user");
|
||||||
if (notAUserRequest) SystemClock.sleep(2000);
|
|
||||||
boolean wasRunAtLeastOnce = pump.lastCmdTime.getTime() > 0;
|
boolean wasRunAtLeastOnce = pump.lastCmdTime.getTime() > 0;
|
||||||
boolean ranWithinTheLastMinute = System.currentTimeMillis() < pump.lastCmdTime.getTime() + 60 * 1000;
|
boolean ranWithinTheLastMinute = System.currentTimeMillis() < pump.lastCmdTime.getTime() + 60 * 1000;
|
||||||
if (notAUserRequest && wasRunAtLeastOnce && ranWithinTheLastMinute) {
|
if (notAUserRequest && wasRunAtLeastOnce && ranWithinTheLastMinute) {
|
||||||
|
|
Loading…
Reference in a new issue