Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit e8575f53 authored by Josh Gao's avatar Josh Gao
Browse files

Thread.sleep takes milliseconds, not seconds.

Test: treehugger
Change-Id: I822937ecd7778f0b9cf2fd22d281ace195f7cb56
parent f9095c3b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -457,7 +457,7 @@ public final class SystemServer {
                }

                try {
                    Thread.sleep(checkInterval);
                    Thread.sleep(checkInterval * 1000);
                } catch (InterruptedException ex) {
                    continue;
                }