diff options
author | Mitchell Wills <mwills@google.com> | 2016-08-29 20:02:26 -0700 |
---|---|---|
committer | Mitchell Wills <mwills@google.com> | 2016-08-29 20:15:48 -0700 |
commit | 8efb84e3e0b66696c45adb1faa0fe1e6f75f22c3 (patch) | |
tree | 53ef4ac0901027ffca5abdffc616d52b61d08ddd /cmds/svc/src | |
parent | b0b6afc248307f0d2eec0e003e47a051a25da093 (diff) |
DO NOT MERGE Revert "Add WiFi toggle prompts - framework"
This reverts commit 40f8b9251831c5f009fd476b1a3d216e126d3ef0.
Change-Id: I23e8b6ac97d8853c271429fc13fbfa313717a95a
Diffstat (limited to 'cmds/svc/src')
-rw-r--r-- | cmds/svc/src/com/android/commands/svc/WifiCommand.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmds/svc/src/com/android/commands/svc/WifiCommand.java b/cmds/svc/src/com/android/commands/svc/WifiCommand.java index 633dd9787cb1..94214ff9694f 100644 --- a/cmds/svc/src/com/android/commands/svc/WifiCommand.java +++ b/cmds/svc/src/com/android/commands/svc/WifiCommand.java @@ -52,7 +52,7 @@ public class WifiCommand extends Svc.Command { IWifiManager wifiMgr = IWifiManager.Stub.asInterface(ServiceManager.getService(Context.WIFI_SERVICE)); try { - wifiMgr.setWifiEnabled("com.android.shell", flag); + wifiMgr.setWifiEnabled(flag); } catch (RemoteException e) { System.err.println("Wi-Fi operation failed: " + e); |