Reverting the change that causes test breakage

Bug: 218973952
Test: wwdebug && wwlogcat
Change-Id: I494608ba3df31e9129dc47fc016a7e077e506165
diff --git a/quickstep/src/com/android/quickstep/logging/StatsLogCompatManager.java b/quickstep/src/com/android/quickstep/logging/StatsLogCompatManager.java
index 0046bbe..a548408 100644
--- a/quickstep/src/com/android/quickstep/logging/StatsLogCompatManager.java
+++ b/quickstep/src/com/android/quickstep/logging/StatsLogCompatManager.java
@@ -571,11 +571,13 @@
     }
 
     private static int getSearchAttributes(LauncherAtom.ItemInfo info) {
-        if (info.getContainerInfo().getExtendedContainers().getDeviceSearchResultContainer()
-                .hasSearchAttributes()) {
-            return searchAttributesToInt(info.getContainerInfo().getExtendedContainers()
-                    .getDeviceSearchResultContainer().getSearchAttributes());
-        }
+    /* TODO(b/218973952):Uncomment the logic after broken test is fixed.
+            if (info.getContainerInfo().getExtendedContainers().getDeviceSearchResultContainer()
+                    .hasSearchAttributes()) {
+                return searchAttributesToInt(info.getContainerInfo().getExtendedContainers()
+                        .getDeviceSearchResultContainer().getSearchAttributes());
+            }
+    */
         return 0;
     }