Merge "Migrate WifiManager.isDualModeSupported() to isStaApConcurrencySupported()"

This commit is contained in:
David Su
2020-01-30 17:42:41 +00:00
committed by Android (Google) Code Review
2 changed files with 4 additions and 4 deletions

View File

@@ -40,7 +40,7 @@ public class WifiTetherApBandPreferenceController extends WifiTetherBasePreferen
public WifiTetherApBandPreferenceController(Context context,
OnTetherConfigUpdateListener listener) {
super(context, listener);
isDualMode = mWifiManager.isDualModeSupported();
isDualMode = mWifiManager.isStaApConcurrencySupported();
updatePreferenceEntries();
}