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

Commit a9adeeb7 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 am: b745a89c

am: d927236e

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

Change-Id: I5188864dafb14188155bbfe6a8c2898bd77ea994
parents ca16cb9d d927236e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -2851,7 +2851,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));
        }
    }