diff options
| author | Derek Tan <derektan@google.com> | 2014-09-05 14:14:35 -0700 |
|---|---|---|
| committer | Derek Tan <derektan@google.com> | 2014-09-05 14:48:11 -0700 |
| commit | 274baa73c51490e10fffe2ccac9c626c8f459cc4 (patch) | |
| tree | 5015848838278ad91b5cedf68147cff74a2ad02f /telephony | |
| parent | 605e71922e83e887991b2ef2bce1b24358098288 (diff) | |
| download | frameworks_base-274baa73c51490e10fffe2ccac9c626c8f459cc4.zip frameworks_base-274baa73c51490e10fffe2ccac9c626c8f459cc4.tar.gz frameworks_base-274baa73c51490e10fffe2ccac9c626c8f459cc4.tar.bz2 | |
Remove setCdmaSubscription API.
Bug: 17255752
Change-Id: I0adc5c3d1b690d86f538c084d17d239f7ffccfca
Diffstat (limited to 'telephony')
| -rw-r--r-- | telephony/java/android/telephony/TelephonyManager.java | 22 | ||||
| -rw-r--r-- | telephony/java/com/android/internal/telephony/ITelephony.aidl | 9 |
2 files changed, 0 insertions, 31 deletions
diff --git a/telephony/java/android/telephony/TelephonyManager.java b/telephony/java/android/telephony/TelephonyManager.java index cdee3de..102b11f 100644 --- a/telephony/java/android/telephony/TelephonyManager.java +++ b/telephony/java/android/telephony/TelephonyManager.java @@ -2967,28 +2967,6 @@ public class TelephonyManager { } /** - * Set the CDMA subscription source. - * Used for device supporting both NV and RUIM for CDMA. - * <p> - * Requires Permission: - * {@link android.Manifest.permission#MODIFY_PHONE_STATE MODIFY_PHONE_STATE} - * Or the calling app has carrier privileges. @see #hasCarrierPrivileges - * - * @param subscriptionType the subscription type, 0 for RUIM, 1 for NV. - * @return true on success; false on any failure. - */ - public boolean setCdmaSubscription(int subscriptionType) { - try { - return getITelephony().setCdmaSubscription(subscriptionType); - } catch (RemoteException ex) { - Rlog.e(TAG, "setCdmaSubscription RemoteException", ex); - } catch (NullPointerException ex) { - Rlog.e(TAG, "setCdmaSubscription NPE", ex); - } - return false; - } - - /** * Values used to return status for hasCarrierPrivileges call. */ public static final int CARRIER_PRIVILEGE_STATUS_HAS_ACCESS = 1; diff --git a/telephony/java/com/android/internal/telephony/ITelephony.aidl b/telephony/java/com/android/internal/telephony/ITelephony.aidl index 5c3dcdb..fe8bc4e 100644 --- a/telephony/java/com/android/internal/telephony/ITelephony.aidl +++ b/telephony/java/com/android/internal/telephony/ITelephony.aidl @@ -643,15 +643,6 @@ interface ITelephony { boolean setPreferredNetworkType(int networkType); /** - * Set the CDMA subscription source. - * Used for device supporting both NV and RUIM for CDMA. - * - * @param subscriptionType the subscription type, 0 for RUIM, 1 for NV. - * @return true on success; false on any failure. - */ - boolean setCdmaSubscription(int subscriptionType); - - /** * User enable/disable Mobile Data. * * @param enable true to turn on, else false |
