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

Commit d658c9b3 authored by Josh Gao's avatar Josh Gao Committed by Automerger Merge Worker
Browse files

Merge "Thread.sleep takes milliseconds, not seconds." am: b79bd286 am:...

Merge "Thread.sleep takes milliseconds, not seconds." am: b79bd286 am: 81830b2d am: 62979184 am: a01cecbd

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1560108

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: I5c1dc296a77850b706e012c98058a6136962188d
parents 6b2d7ec9 a01cecbd
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -498,7 +498,7 @@ public final class SystemServer implements Dumpable {
                }

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