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

Commit 7f51a279 authored by András Kurucz's avatar András Kurucz Committed by Android (Google) Code Review
Browse files

Merge "[Flexiglass] Verify isBelowLastNotification unused" into main

parents b72ba563 951c4f49
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -4840,6 +4840,7 @@ public class NotificationStackScrollLayout
    }

    public boolean isBelowLastNotification(float touchX, float touchY) {
        SceneContainerFlag.assertInLegacyMode();
        int childCount = getChildCount();
        for (int i = childCount - 1; i >= 0; i--) {
            ExpandableView child = getChildAtIndex(i);
+1 −0
Original line number Diff line number Diff line
@@ -1235,6 +1235,7 @@ public class NotificationStackScrollLayoutController implements Dumpable {
    }

    public boolean isBelowLastNotification(float x, float y) {
        SceneContainerFlag.assertInLegacyMode();
        return mView.isBelowLastNotification(x, y);
    }