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

Commit e880b18a authored by Hall Liu's avatar Hall Liu Committed by android-build-merger
Browse files

Merge "Fix comparison bug in InCallServiceInfo" am: 5ce1a784 am: 10197de5

am: d4ee3bef

Change-Id: I41527be5e199ead758d26595d45b91e0d5882d32
parents 9f0b884f d4ee3bef
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -126,7 +126,7 @@ public final class InCallController extends CallsManagerListenerBase {
            if (mIsExternalCallsSupported != that.mIsExternalCallsSupported) {
                return false;
            }
            if (mIsSelfManagedCallsSupported != that.mIsExternalCallsSupported) {
            if (mIsSelfManagedCallsSupported != that.mIsSelfManagedCallsSupported) {
                return false;
            }
            return mComponentName.equals(that.mComponentName);