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

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

Change-Id: Ie6a8669fa5fdac4e3cc6f192e0090d1e4e057cab
parents 15a2b014 10197de5
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);