Fix power widget bluetooth.

Starting wifi would also start bluetooth, due to a stray line.
bug=1910079
This commit is contained in:
Ken Shirriff
2009-06-10 16:26:08 -07:00
parent a8d206265b
commit 17f37f788a

View File

@@ -255,7 +255,6 @@ public class SettingsAppWidgetProvider extends AppWidgetProvider {
wifiManager.setWifiEnabled(false); wifiManager.setWifiEnabled(false);
} else if (wifiState == STATE_DISABLED) { } else if (wifiState == STATE_DISABLED) {
wifiManager.setWifiEnabled(true); wifiManager.setWifiEnabled(true);
mLocalBluetoothManager.setBluetoothEnabled(true);
} }
} }