Merge "Swap param order in registerSoftApCallback"

am: 76632c01fd

Change-Id: Id33581fd71070e23a561ca34e76f0623d66e2852
This commit is contained in:
James Mattis
2019-11-20 10:32:44 -08:00
committed by android-build-merger

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