commit | def3e9f734dc73bd737d881752a1763dc2751683 | [log] [tgz] |
---|---|---|
author | James Mattis <jmattis@google.com> | Tue Nov 12 17:47:21 2019 -0800 |
committer | James Mattis <jmattis@google.com> | Mon Nov 18 13:16:34 2019 -0800 |
tree | da964c1af949f251ea38f5e196bce031d0735359 | |
parent | 60bd816476ec2bddf916c04f496e48645b2858b2 [diff] |
Swap param order in registerSoftApCallback Moving executor to be the first argument in registerSoftApCallback. Bug: 144379300 Test: Manually on pixel 3 Change-Id: I5563c1059cc04014a0fd909e2508f7bf497d708e Merged-In: I5563c1059cc04014a0fd909e2508f7bf497d708e
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() {