不要な処理を削除(同じ値を5分後に比較しても結果は変わらないため)

This commit is contained in:
ろむねこ 2024-07-11 15:39:52 +09:00
parent 32538a43d9
commit 286c178f7f
No known key found for this signature in database
GPG Key ID: FA1F39A1BA37D168

View File

@ -272,10 +272,8 @@ public class TestService extends Service {
handler.postDelayed(new Runnable() { handler.postDelayed(new Runnable() {
@Override @Override
public void run() { public void run() {
if (BluetoothDevice.ACTION_ACL_DISCONNECTED.equals(action) && !isInCar) {//その後bluetoothを再接続したり降車状態になったりしていない置き去りが発生した可能性大
Notification(context, BLUETOOTH_NOTIFICATION); Notification(context, BLUETOOTH_NOTIFICATION);
} }
}
}, 5 * 60 * 1000); // 5分をミリ秒に変換 }, 5 * 60 * 1000); // 5分をミリ秒に変換
} }