Merge "Swap param order in registerSoftApCallback" am: 76632c01fd

am: 1f3415f36e

Change-Id: I67839045cc59d0b8d17da228d0a8c81d1fb09151
This commit is contained in:
James Mattis
2019-11-20 10:40:15 -08:00
committed by android-build-merger

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