summaryrefslogtreecommitdiffstats
path: root/src/com/android/settings/bluetooth
diff options
context:
space:
mode:
authorfredc <fredc@broadcom.com>2012-04-24 03:47:53 -0700
committerMatthew Xie <mattx@google.com>2012-07-16 15:38:37 -0700
commit83b0d575dd7a321fc106d600234026b57a85359e (patch)
tree7992c592abc109f5084c0e3ef9ff4119c5ec3197 /src/com/android/settings/bluetooth
parent7f38f47ed2cc2479e1c9f362b471aac73caa0543 (diff)
downloadpackages_apps_settings-83b0d575dd7a321fc106d600234026b57a85359e.zip
packages_apps_settings-83b0d575dd7a321fc106d600234026b57a85359e.tar.gz
packages_apps_settings-83b0d575dd7a321fc106d600234026b57a85359e.tar.bz2
Fixed issue with Settings app crashing after turning on/off and clicking unpair
Change-Id: Icc7667cea62251074ae38aa2d650c88a51d8eab6
Diffstat (limited to 'src/com/android/settings/bluetooth')
-rw-r--r--src/com/android/settings/bluetooth/PanProfile.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/com/android/settings/bluetooth/PanProfile.java b/src/com/android/settings/bluetooth/PanProfile.java
index 3db4a2b..b3c5493 100644
--- a/src/com/android/settings/bluetooth/PanProfile.java
+++ b/src/com/android/settings/bluetooth/PanProfile.java
@@ -33,7 +33,6 @@ import java.util.List;
*/
final class PanProfile implements LocalBluetoothProfile {
private BluetoothPan mService;
-
// Tethering direction for each device
private final HashMap<BluetoothDevice, Integer> mDeviceRoleMap =
new HashMap<BluetoothDevice, Integer>();
@@ -52,7 +51,7 @@ final class PanProfile implements LocalBluetoothProfile {
}
public void onServiceDisconnected(int profile) {
- mService = null;
+
}
}