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:
@@ -36,7 +36,7 @@ public class WifiTetherSoftApManager {
|
|||||||
}
|
}
|
||||||
|
|
||||||
public void registerSoftApCallback() {
|
public void registerSoftApCallback() {
|
||||||
mWifiManager.registerSoftApCallback(mSoftApCallback, new HandlerExecutor(mHandler));
|
mWifiManager.registerSoftApCallback(new HandlerExecutor(mHandler), mSoftApCallback);
|
||||||
}
|
}
|
||||||
|
|
||||||
public void unRegisterSoftApCallback() {
|
public void unRegisterSoftApCallback() {
|
||||||
|
Reference in New Issue
Block a user