Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a4caf5c7 authored by Sungcheol Ahn's avatar Sungcheol Ahn Committed by Automerger Merge Worker
Browse files

Merge "[Telephony] remove the RuntimeException thrown" am: 841bcc5b am: f01408d5 am: cfe1d388

Original change: https://android-review.googlesource.com/c/platform/frameworks/base/+/2033543

Change-Id: I0602d647e9cf64bbf14764629de3d7979862c693
parents 4a320b3b cfe1d388
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -621,9 +621,9 @@ public class ImsMmTelManager implements RegistrationManager {

        ITelephony iTelephony = getITelephony();
        if (iTelephony == null) {
            throw new RuntimeException("Could not find Telephony Service.");
            Log.w("ImsMmTelManager", "Could not find Telephony Service.");
            return;
        }

        try {
            iTelephony.unregisterMmTelCapabilityCallback(mSubId, c.getBinder());
        } catch (RemoteException e) {