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

Commit 80b7934d authored by Brad Ebinger's avatar Brad Ebinger Committed by android-build-merger
Browse files

Do not Lock on Registration and Config Query am: 9ffeebf0

am: d71a485a

Change-Id: I48a554c509b61094dd65b3d8ac6195a891508a64
parents ddcadceb d71a485a
Loading
Loading
Loading
Loading
+6 −12
Original line number Diff line number Diff line
@@ -484,16 +484,11 @@ public class MmTelFeatureConnection {
    }

    public IImsConfig getConfigInterface() throws RemoteException {
        synchronized (mLock) {
            checkServiceIsReady();
        return getConfig();
    }
    }

    public @ImsRegistrationImplBase.ImsRegistrationTech int getRegistrationTech()
            throws RemoteException {
        synchronized (mLock) {
            checkServiceIsReady();
        IImsRegistration registration = getRegistration();
        if (registration != null) {
                return registration.getRegistrationTechnology();
@@ -501,7 +496,6 @@ public class MmTelFeatureConnection {
            return ImsRegistrationImplBase.REGISTRATION_TECH_NONE;
        }
    }
    }

    public IImsEcbm getEcbmInterface() throws RemoteException {
        synchronized (mLock) {