diff options
| author | 2016-05-09 23:33:14 +0000 | |
|---|---|---|
| committer | 2016-05-09 23:33:15 +0000 | |
| commit | b745a89c1f1cec0bfc14c5cd3053b32b0ffc22fe (patch) | |
| tree | 41a93f08886aea6555dc7ba1c4b490751af7970b | |
| parent | 3e04c5643230cb9ac688f1367e19495509005637 (diff) | |
| parent | 81f26d332c6e096d66e825cd2f1d536cf2606c1e (diff) | |
Merge "Fixed an issue where clearing transient views could ANR" into nyc-dev
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/stack/NotificationStackScrollLayout.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/stack/NotificationStackScrollLayout.java b/packages/SystemUI/src/com/android/systemui/statusbar/stack/NotificationStackScrollLayout.java index 662aedb4d224..6f3c95e18946 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/stack/NotificationStackScrollLayout.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/stack/NotificationStackScrollLayout.java @@ -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)); } } |