From 4816615af17336e98573080b53868359dd6e5e3f Mon Sep 17 00:00:00 2001 From: Nikita Dubrovsky Date: Mon, 28 Sep 2020 14:14:00 -0700 Subject: [PATCH] Shorten logcat tag in TextViewOnReceiveContentCallback Bug: 152068298 Test: Manual Change-Id: Ic191f5fe1f4f713f9c01a1934754e068b9daf96e --- core/java/android/widget/TextViewOnReceiveContentCallback.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/java/android/widget/TextViewOnReceiveContentCallback.java b/core/java/android/widget/TextViewOnReceiveContentCallback.java index 4ed33f029ccfb..35618cb3d2a5c 100644 --- a/core/java/android/widget/TextViewOnReceiveContentCallback.java +++ b/core/java/android/widget/TextViewOnReceiveContentCallback.java @@ -44,7 +44,7 @@ import java.util.Set; * provide consistent behavior for insertion of text. */ public class TextViewOnReceiveContentCallback implements OnReceiveContentCallback { - private static final String LOG_TAG = "OnReceiveContentCallback"; + private static final String LOG_TAG = "OnReceiveContent"; private static final Set MIME_TYPES_ALL_TEXT = Collections.singleton("text/*");