Loading core/java/android/service/notification/NotificationListenerService.java +2 −1 Original line number Diff line number Diff line Loading @@ -1895,7 +1895,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); } } Loading packages/SystemUI/tests/src/com/android/systemui/statusbar/RankingBuilder.java +1 −0 Original line number Diff line number Diff line Loading @@ -76,6 +76,7 @@ public class RankingBuilder { mSmartActions = copyList(ranking.getSmartActions()); mSmartReplies = copyList(ranking.getSmartReplies()); mCanBubble = ranking.canBubble(); mIsVisuallyInterruptive = ranking.visuallyInterruptive(); } public Ranking build() { Loading Loading
core/java/android/service/notification/NotificationListenerService.java +2 −1 Original line number Diff line number Diff line Loading @@ -1895,7 +1895,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); } } Loading
packages/SystemUI/tests/src/com/android/systemui/statusbar/RankingBuilder.java +1 −0 Original line number Diff line number Diff line Loading @@ -76,6 +76,7 @@ public class RankingBuilder { mSmartActions = copyList(ranking.getSmartActions()); mSmartReplies = copyList(ranking.getSmartReplies()); mCanBubble = ranking.canBubble(); mIsVisuallyInterruptive = ranking.visuallyInterruptive(); } public Ranking build() { Loading