Merge "Thread.sleep takes milliseconds, not seconds." am: b79bd2867f am: 81830b2d5f
Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/1560108 MUST ONLY BE SUBMITTED BY AUTOMERGER Change-Id: I31534b93bdf67d8f6bfcb6839644157d25c1d100
This commit is contained in:
@@ -460,7 +460,7 @@ public final class SystemServer {
|
||||
}
|
||||
|
||||
try {
|
||||
Thread.sleep(checkInterval);
|
||||
Thread.sleep(checkInterval * 1000);
|
||||
} catch (InterruptedException ex) {
|
||||
continue;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user