Loading android/app/src/com/android/bluetooth/pan/PanService.java +1 −3 Original line number Diff line number Diff line Loading @@ -574,9 +574,7 @@ public class PanService extends ProfileService { + ", prevState = " + prevState); if (state == BluetoothProfile.STATE_CONNECTED) { mNetworkFactory.startReverseTether(iface); } else if (state == BluetoothProfile.STATE_DISCONNECTED && ( prevState == BluetoothProfile.STATE_CONNECTED || prevState == BluetoothProfile.STATE_DISCONNECTING)) { } else if (state == BluetoothProfile.STATE_DISCONNECTED) { mNetworkFactory.stopReverseTether(); mPanDevices.remove(device); } Loading Loading
android/app/src/com/android/bluetooth/pan/PanService.java +1 −3 Original line number Diff line number Diff line Loading @@ -574,9 +574,7 @@ public class PanService extends ProfileService { + ", prevState = " + prevState); if (state == BluetoothProfile.STATE_CONNECTED) { mNetworkFactory.startReverseTether(iface); } else if (state == BluetoothProfile.STATE_DISCONNECTED && ( prevState == BluetoothProfile.STATE_CONNECTED || prevState == BluetoothProfile.STATE_DISCONNECTING)) { } else if (state == BluetoothProfile.STATE_DISCONNECTED) { mNetworkFactory.stopReverseTether(); mPanDevices.remove(device); } Loading