Remove tracing for fixed bugs

Bug: 129434166
Bug: 131170582
Change-Id: Ia9b356594001d96c69ffbb7f8b767b2f54ed5feb
This commit is contained in:
vadimt
2019-05-01 16:10:56 -07:00
parent dffb214d0f
commit 8649cf29e4
16 changed files with 14 additions and 155 deletions

View File

@@ -66,14 +66,6 @@ public class ItemClickHandler {
}
private static void onClick(View v, String sourceContainer) {
if (com.android.launcher3.TestProtocol.sDebugTracing) {
android.util.Log.d(com.android.launcher3.TestProtocol.NO_DRAG_TAG,
"onClick() called with: v = [" + v.getClass().getSimpleName() +
"], sourceContainer = [" +
(sourceContainer != null ?
sourceContainer.getClass().getSimpleName() : "null")
+ "]");
}
// Make sure that rogue clicks don't get through while allapps is launching, or after the
// view has detached (it's possible for this to happen if the view is removed mid touch).
if (v.getWindowToken() == null) {