Merge "Swap param order in registerSoftApCallback"

This commit is contained in:
James Mattis
2019-11-20 18:16:53 +00:00
committed by Gerrit Code Review

View File

@@ -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() {