Merge "SoftApCallback using executor vs handler"

am: 60bd816476

Change-Id: Ie1fa6d76883ed5ee1a9e4390637a8f514e4cdbdf
This commit is contained in:
James Mattis
2019-11-15 15:35:43 -08:00
committed by android-build-merger

View File

@@ -3,6 +3,7 @@ package com.android.settings.wifi.tether;
import android.net.wifi.WifiClient;
import android.net.wifi.WifiManager;
import android.os.Handler;
import android.os.HandlerExecutor;
import java.util.List;
@@ -35,7 +36,7 @@ public class WifiTetherSoftApManager {
}
public void registerSoftApCallback() {
mWifiManager.registerSoftApCallback(mSoftApCallback, mHandler);
mWifiManager.registerSoftApCallback(mSoftApCallback, new HandlerExecutor(mHandler));
}
public void unRegisterSoftApCallback() {