Disable calls to MobileDataStateTracker.isProvisioning() as there is no more am: c72bce7591

Original change: undetermined

Change-Id: I1061fb47f7bc9d93720e4e22e7e053cce1eab651
This commit is contained in:
Paul Jensen
2021-05-31 07:21:24 +00:00
committed by Automerger Merge Worker

View File

@@ -4176,7 +4176,10 @@ public class ConnectivityService extends IConnectivityManager.Stub {
CheckMp.Params params =
new CheckMp.Params(checkMp.getDefaultUrl(), timeOutMs, cb);
if (DBG) log("checkMobileProvisioning: params=" + params);
checkMp.execute(params);
// TODO: Reenable when calls to the now defunct
// MobileDataStateTracker.isProvisioningNetwork() are removed.
// This code should be moved to the Telephony code.
// checkMp.execute(params);
} finally {
Binder.restoreCallingIdentity(token);
if (DBG) log("checkMobileProvisioning: X");