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

Commit e588ba41 authored by Automerger Merge Worker's avatar Automerger Merge Worker
Browse files

Update Ranking's equal method [DO NOT MERGE] am: 172e20fa

Change-Id: Ie752b4b52ad53cbdbab0a4330deb15f84dfb9e12
parents b43a2e67 172e20fa
Loading
Loading
Loading
Loading
+2 −1
Original line number Diff line number Diff line
@@ -1887,7 +1887,8 @@ public abstract class NotificationListenerService extends Service {
                    && ((mSmartActions == null ? 0 : mSmartActions.size())
                        == (other.mSmartActions == null ? 0 : other.mSmartActions.size()))
                    && Objects.equals(mSmartReplies, other.mSmartReplies)
                    && Objects.equals(mCanBubble, other.mCanBubble);
                    && Objects.equals(mCanBubble, other.mCanBubble)
                    && Objects.equals(mVisuallyInterruptive, other.mVisuallyInterruptive);
        }
    }