Merge "Use constant for tethering connector poll interval."

This commit is contained in:
Amos Bianchi
2020-02-18 20:46:25 +00:00
committed by Android (Google) Code Review

View File

@@ -212,7 +212,7 @@ public class TetheringManager {
new Thread(() -> { new Thread(() -> {
while (true) { while (true) {
try { try {
Thread.sleep(200); Thread.sleep(CONNECTOR_POLL_INTERVAL_MILLIS);
} catch (InterruptedException e) { } catch (InterruptedException e) {
// Not much to do here, the system needs to wait for the connector // Not much to do here, the system needs to wait for the connector
} }