Merge "Remove Obsolete enable/disableApn functions."
This commit is contained in:
committed by
Android (Google) Code Review
commit
19f01ebe90
@@ -699,15 +699,15 @@ public class MobileDataStateTracker extends BaseNetworkStateTracker {
|
||||
break;
|
||||
}
|
||||
|
||||
try {
|
||||
if (enable) {
|
||||
return mPhoneService.enableApnType(apnType);
|
||||
} else {
|
||||
return mPhoneService.disableApnType(apnType);
|
||||
}
|
||||
} catch (RemoteException e) {
|
||||
if (retry == 0) getPhoneService(true);
|
||||
}
|
||||
// try {
|
||||
// if (enable) {
|
||||
// return mPhoneService.enableApnType(apnType);
|
||||
// } else {
|
||||
// return mPhoneService.disableApnType(apnType);
|
||||
// }
|
||||
// } catch (RemoteException e) {
|
||||
// if (retry == 0) getPhoneService(true);
|
||||
// }
|
||||
}
|
||||
|
||||
loge("Could not " + (enable ? "enable" : "disable") + " APN type \"" + apnType + "\"");
|
||||
|
||||
@@ -3033,28 +3033,6 @@ public class TelephonyManager {
|
||||
}
|
||||
}
|
||||
|
||||
/** @hide */
|
||||
@SystemApi
|
||||
public int enableApnType(String type) {
|
||||
try {
|
||||
return getITelephony().enableApnType(type);
|
||||
} catch (RemoteException e) {
|
||||
Log.e(TAG, "Error calling ITelephony#enableApnType", e);
|
||||
}
|
||||
return PhoneConstants.APN_REQUEST_FAILED;
|
||||
}
|
||||
|
||||
/** @hide */
|
||||
@SystemApi
|
||||
public int disableApnType(String type) {
|
||||
try {
|
||||
return getITelephony().disableApnType(type);
|
||||
} catch (RemoteException e) {
|
||||
Log.e(TAG, "Error calling ITelephony#disableApnType", e);
|
||||
}
|
||||
return PhoneConstants.APN_REQUEST_FAILED;
|
||||
}
|
||||
|
||||
/** @hide */
|
||||
@SystemApi
|
||||
public boolean enableDataConnectivity() {
|
||||
|
||||
@@ -310,27 +310,6 @@ interface ITelephony {
|
||||
*/
|
||||
void disableLocationUpdatesUsingSubId(long subId);
|
||||
|
||||
|
||||
/**
|
||||
* Enable a specific APN type.
|
||||
*/
|
||||
int enableApnType(String type);
|
||||
|
||||
/**
|
||||
* Disable a specific APN type.
|
||||
*/
|
||||
int disableApnType(String type);
|
||||
|
||||
/**
|
||||
* Enable a specific APN type with subscription.
|
||||
*/
|
||||
int enableApnTypeUsingSub(long subId, String type);
|
||||
|
||||
/**
|
||||
* Disable a specific APN type with subscription.
|
||||
*/
|
||||
int disableApnTypeUsingSub(long subId, String type);
|
||||
|
||||
/**
|
||||
* Allow mobile data connections.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user