From 693601db798ee43d537a45d480e1442799fe0b82 Mon Sep 17 00:00:00 2001 From: Selim Cinek Date: Wed, 25 Mar 2020 19:52:04 -0700 Subject: [PATCH] Fixed error that was repeatedly polluting the log Bug: 152455473 Test: Observe no logs Change-Id: I454edd35fd1089950e7aed6bbb8699b1de6b80e1 --- .../android/systemui/statusbar/NotificationShelf.java | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/NotificationShelf.java b/packages/SystemUI/src/com/android/systemui/statusbar/NotificationShelf.java index d7f2ae43cf9ee..651623b45f6ac 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/NotificationShelf.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/NotificationShelf.java @@ -409,12 +409,9 @@ public class NotificationShelf extends ActivatableNotificationView implements private void clipTransientViews() { for (int i = 0; i < mHostLayout.getTransientViewCount(); i++) { View transientView = mHostLayout.getTransientView(i); - if (transientView instanceof ExpandableNotificationRow) { - ExpandableNotificationRow transientRow = (ExpandableNotificationRow) transientView; - updateNotificationClipHeight(transientRow, getTranslationY(), -1); - } else { - Log.e(TAG, "NotificationShelf.clipTransientViews(): " - + "Trying to clip non-row transient view"); + if (transientView instanceof ExpandableView) { + ExpandableView transientExpandableView = (ExpandableView) transientView; + updateNotificationClipHeight(transientExpandableView, getTranslationY(), -1); } } }