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
This commit is contained in:
James Mattis
2019-11-12 17:47:21 -08:00
parent 60bd816476
commit def3e9f734

View File

@@ -36,7 +36,7 @@ public class WifiTetherSoftApManager {
}
public void registerSoftApCallback() {
mWifiManager.registerSoftApCallback(mSoftApCallback, new HandlerExecutor(mHandler));
mWifiManager.registerSoftApCallback(new HandlerExecutor(mHandler), mSoftApCallback);
}
public void unRegisterSoftApCallback() {