From 4682b509b988e656733ba9cbe48bd62a679411d5 Mon Sep 17 00:00:00 2001 From: Dan Sandler Date: Fri, 23 Jun 2017 12:42:19 -0400 Subject: [PATCH] Remove unnecessary dumpsys output. Change-Id: I5ec0b6b44fca58e9f5f61444acbff7a15550b135 Fixes: 62828801 Test: adb shell dumpsys activity service SystemUI | grep -c tickerText (should be zero) --- .../src/com/android/systemui/statusbar/NotificationData.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/NotificationData.java b/packages/SystemUI/src/com/android/systemui/statusbar/NotificationData.java index c0691c11a2866..e5b1afe313707 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/NotificationData.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/NotificationData.java @@ -568,8 +568,6 @@ public class NotificationData { mTmpRanking.getImportance()); pw.print(indent); pw.println(" notification=" + n.getNotification()); - pw.print(indent); - pw.println(" tickerText=\"" + n.getNotification().tickerText + "\""); } private static boolean isSystemNotification(StatusBarNotification sbn) {