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

Commit 4e795096 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: df5454ef

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

Change-Id: I30972731b4be6e01097788a55b943f22ad7d20ad
parents ca16cb9d df5454ef
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));
        }
    }