diff options
| author | 2018-06-19 22:36:52 +0000 | |
|---|---|---|
| committer | 2018-06-19 22:36:52 +0000 | |
| commit | 4cc443ae2e4811a968f2e5cd85f78db84e18d70d (patch) | |
| tree | 86450f592fe84d6301b368a408f7d6a8b1e05b8a | |
| parent | 6eb9ce63b89d4028d4ce7428400aa113f77047b3 (diff) | |
| parent | 5f05f1e405526208e59bc6cb5f061783855ae505 (diff) | |
Merge "Revert isResolvingImsBinding ITelephony interface" into pi-dev
| -rw-r--r-- | telephony/java/android/telephony/TelephonyManager.java | 17 | ||||
| -rw-r--r-- | telephony/java/com/android/internal/telephony/ITelephony.aidl | 6 |
2 files changed, 0 insertions, 23 deletions
diff --git a/telephony/java/android/telephony/TelephonyManager.java b/telephony/java/android/telephony/TelephonyManager.java index 487490c194b6..446e5a5aa14c 100644 --- a/telephony/java/android/telephony/TelephonyManager.java +++ b/telephony/java/android/telephony/TelephonyManager.java @@ -5436,23 +5436,6 @@ public class TelephonyManager { } /** - * @return true if the IMS resolver is busy resolving a binding and should not be considered - * available, false if the IMS resolver is idle. - * @hide - */ - public boolean isResolvingImsBinding() { - try { - ITelephony telephony = getITelephony(); - if (telephony != null) { - return telephony.isResolvingImsBinding(); - } - } catch (RemoteException e) { - Rlog.e(TAG, "isResolvingImsBinding, RemoteException: " + e.getMessage()); - } - return false; - } - - /** * Set IMS registration state * * @param Registration state diff --git a/telephony/java/com/android/internal/telephony/ITelephony.aidl b/telephony/java/com/android/internal/telephony/ITelephony.aidl index 639dd74e974e..60422d184404 100644 --- a/telephony/java/com/android/internal/telephony/ITelephony.aidl +++ b/telephony/java/com/android/internal/telephony/ITelephony.aidl @@ -823,12 +823,6 @@ interface ITelephony { IImsConfig getImsConfig(int slotId, int feature); /** - * @return true if the IMS resolver is busy resolving a binding and should not be considered - * available, false if the IMS resolver is idle. - */ - boolean isResolvingImsBinding(); - - /** * @return true if the ImsService to bind to for the slot id specified was set, false otherwise. */ boolean setImsService(int slotId, boolean isCarrierImsService, String packageName); |