diff options
Diffstat (limited to 'src/com/android')
-rw-r--r-- | src/com/android/settings/TetherSettings.java | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/com/android/settings/TetherSettings.java b/src/com/android/settings/TetherSettings.java index 67049ffe0..bcd772ef9 100644 --- a/src/com/android/settings/TetherSettings.java +++ b/src/com/android/settings/TetherSettings.java @@ -433,8 +433,7 @@ public class TetherSettings extends PreferenceActivity { mBluetoothSettings.setEnabled(true); } - mBluetoothPan.setBluetoothTethering(true, - BluetoothPan.NAP_ROLE, BluetoothPan.NAP_BRIDGE); + mBluetoothPan.setBluetoothTethering(true); mBluetoothTether.setSummary(R.string.bluetooth_tethering_available_subtext); } else { boolean errored = false; @@ -448,9 +447,7 @@ public class TetherSettings extends PreferenceActivity { errored = true; } - mBluetoothPan.setBluetoothTethering(false, - BluetoothPan.NAP_ROLE, BluetoothPan.NAP_BRIDGE); - + mBluetoothPan.setBluetoothTethering(false); mBluetoothSettings.setEnabled(false); if (errored) { mBluetoothTether.setSummary(R.string.bluetooth_tethering_errored_subtext); |