Revert isResolvingImsBinding ITelephony interface

Reverting the only user of this interface.

Bug: 109762920
Bug: 116766786
Test: GTS/Unit tests for ImsService
Merged-In: I9c8cc1c4401590865f33fa13402152287063cecf
Change-Id: Id2e1ac2e4fbbcb7f019e79568f21ee56c94b6c1f
This commit is contained in:
Brad Ebinger
2018-06-13 17:11:50 -07:00
parent 4a2dd10d83
commit 25311cd31c
2 changed files with 0 additions and 23 deletions

View File

@@ -5658,23 +5658,6 @@ public class TelephonyManager {
return null;
}
/**
* @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
*

View File

@@ -816,12 +816,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.
*/