Merge "Fixed an issue where clearing transient views could ANR" into nyc-dev am: b745a89c1f am: d927236e9d

am: a9adeeb7d4

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

Change-Id: I671e39126cf016a0b8be6bef5b6941a052ba0e15
This commit is contained in:
Selim Cinek
2016-05-09 23:57:49 +00:00
committed by android-build-merger

View File

@@ -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));
}
}