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

Commit 62979184 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: 81830b2d

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

MUST ONLY BE SUBMITTED BY AUTOMERGER

Change-Id: I31534b93bdf67d8f6bfcb6839644157d25c1d100
parents bd4e78b0 81830b2d
Loading
Loading
Loading
Loading
+1 −1
Original line number Original line Diff line number Diff line
@@ -460,7 +460,7 @@ public final class SystemServer {
                }
                }


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