void onEvent2, boolean onEvent2を削除

This commit is contained in:
ろむねこ 2024-07-11 14:08:51 +09:00
parent d817dfaf58
commit aa6ee4f035
No known key found for this signature in database
GPG Key ID: FA1F39A1BA37D168
2 changed files with 0 additions and 16 deletions

View File

@ -180,17 +180,5 @@ public class HomeFragment extends Fragment implements OnEventListener {
return updateUiState(isInCar); return updateUiState(isInCar);
} }
@Override
public void onEvent2(boolean BluetoothConnect) {
return;
}
@Override
public boolean onEvent2(Boolean BluetoothConnect) {//Bluetoothの接続切断を受け取ってupdateBluetoothSituation()に渡す
updateBluetoothSituation(BluetoothConnect);
return false;
}
} }

View File

@ -3,8 +3,4 @@ package com.example.childguard;
public interface OnEventListener { public interface OnEventListener {
boolean onEvent(boolean state); boolean onEvent(boolean state);
void onEvent2(boolean BluetoothConnect);
boolean onEvent2(Boolean BluetoothConnect);
} }