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

Commit d71a485a 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

Change-Id: I18098f356cfc836c19331ed71d0fb710efc43034
parents 9a8b5c17 9ffeebf0
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) {