設定しているだけで未使用の処理を削除

This commit is contained in:
ろむねこ 2024-07-11 15:36:57 +09:00
parent fb1faa6d56
commit f4e3db8158
No known key found for this signature in database
GPG Key ID: FA1F39A1BA37D168

View File

@ -279,12 +279,10 @@ public class TestService extends Service {
if (deviceHardwareAddress.equals(registeredId)) { if (deviceHardwareAddress.equals(registeredId)) {
//登録済みのデバイスだったときの処理 //登録済みのデバイスだったときの処理
Log.d("BT_Judge", "登録済み"); Log.d("BT_Judge", "登録済み");
e.putBoolean("connection_status", true);
} else { } else {
//登録していないデバイスだったときの処理 //登録していないデバイスだったときの処理
Log.d("BT_Judge", "未登録"); Log.d("BT_Judge", "未登録");
e.putBoolean("connection_status", false);
} }
e.apply(); e.apply();