Loading packages/SystemUI/src/com/android/systemui/statusbar/notification/logging/NotificationLogger.java +2 −5 Original line number Diff line number Diff line Loading @@ -167,13 +167,10 @@ public class NotificationLogger implements StateListener { */ public static NotificationVisibility.NotificationLocation getNotificationLocation( NotificationEntry entry) { ExpandableNotificationRow row = entry.getRow(); ExpandableViewState childViewState = row.getViewState(); if (childViewState == null) { if (entry == null || entry.getRow() == null || entry.getRow().getViewState() == null) { return NotificationVisibility.NotificationLocation.LOCATION_UNKNOWN; } return convertNotificationLocation(childViewState.location); return convertNotificationLocation(entry.getRow().getViewState().location); } private static NotificationVisibility.NotificationLocation convertNotificationLocation( Loading Loading
packages/SystemUI/src/com/android/systemui/statusbar/notification/logging/NotificationLogger.java +2 −5 Original line number Diff line number Diff line Loading @@ -167,13 +167,10 @@ public class NotificationLogger implements StateListener { */ public static NotificationVisibility.NotificationLocation getNotificationLocation( NotificationEntry entry) { ExpandableNotificationRow row = entry.getRow(); ExpandableViewState childViewState = row.getViewState(); if (childViewState == null) { if (entry == null || entry.getRow() == null || entry.getRow().getViewState() == null) { return NotificationVisibility.NotificationLocation.LOCATION_UNKNOWN; } return convertNotificationLocation(childViewState.location); return convertNotificationLocation(entry.getRow().getViewState().location); } private static NotificationVisibility.NotificationLocation convertNotificationLocation( Loading