From 7e1ffd737e84f0876efa07ba1cb7ea498f10f92f Mon Sep 17 00:00:00 2001 From: Julia Reynolds Date: Mon, 28 Nov 2016 13:50:22 -0500 Subject: [PATCH] Shorten log tag. Bug: 32437842 Test: manual Change-Id: Id6f77a2dec30a4da695232d70e441398285f14d0 --- .../service/notification/NotificationListenerService.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/core/java/android/service/notification/NotificationListenerService.java b/core/java/android/service/notification/NotificationListenerService.java index 02ab30a1cbcd9..37674a6913d5f 100644 --- a/core/java/android/service/notification/NotificationListenerService.java +++ b/core/java/android/service/notification/NotificationListenerService.java @@ -78,9 +78,7 @@ import java.util.List; */ public abstract class NotificationListenerService extends Service { - // TAG = "NotificationListenerService[MySubclass]" - private final String TAG = NotificationListenerService.class.getSimpleName() - + "[" + getClass().getSimpleName() + "]"; + private final String TAG = getClass().getSimpleName(); /** * {@link #getCurrentInterruptionFilter() Interruption filter} constant -