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

Commit 2edb266c authored by Selim Cinek's avatar Selim Cinek Committed by android-build-merger
Browse files

Merge "Fixed an issue where clearing transient views could ANR" into nyc-dev...

Merge "Fixed an issue where clearing transient views could ANR" into nyc-dev am: b745a89c am: d927236e
am: a9adeeb7

* commit 'a9adeeb7':
  Fixed an issue where clearing transient views could ANR

Change-Id: I671e39126cf016a0b8be6bef5b6941a052ba0e15
parents a7270f87 a9adeeb7
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2853,7 +2853,7 @@ public class NotificationStackScrollLayout extends ViewGroup

    private void clearTransientViews(ViewGroup viewGroup) {
        while (viewGroup != null && viewGroup.getTransientViewCount() != 0) {
            viewGroup.removeTransientView(getTransientView(0));
            viewGroup.removeTransientView(viewGroup.getTransientView(0));
        }
    }