commit | 76632c01fd8bc8803dbe8d7830f2a5bbd46ac6bd | [log] [tgz] |
---|---|---|
author | James Mattis <jmattis@google.com> | Wed Nov 20 18:16:53 2019 +0000 |
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | Wed Nov 20 18:16:53 2019 +0000 |
tree | da964c1af949f251ea38f5e196bce031d0735359 | |
parent | 60bd816476ec2bddf916c04f496e48645b2858b2 [diff] | |
parent | def3e9f734dc73bd737d881752a1763dc2751683 [diff] |
Merge "Swap param order in registerSoftApCallback"
diff --git a/src/com/android/settings/wifi/tether/WifiTetherSoftApManager.java b/src/com/android/settings/wifi/tether/WifiTetherSoftApManager.java index 3de5869..2db037f 100644 --- a/src/com/android/settings/wifi/tether/WifiTetherSoftApManager.java +++ b/src/com/android/settings/wifi/tether/WifiTetherSoftApManager.java
@@ -36,7 +36,7 @@ } public void registerSoftApCallback() { - mWifiManager.registerSoftApCallback(mSoftApCallback, new HandlerExecutor(mHandler)); + mWifiManager.registerSoftApCallback(new HandlerExecutor(mHandler), mSoftApCallback); } public void unRegisterSoftApCallback() {