Merge "Thread.sleep takes milliseconds, not seconds."
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