diff --git a/quickstep/src/com/android/quickstep/logging/StatsLogCompatManager.java b/quickstep/src/com/android/quickstep/logging/StatsLogCompatManager.java index 4016b45e00..12a638a804 100644 --- a/quickstep/src/com/android/quickstep/logging/StatsLogCompatManager.java +++ b/quickstep/src/com/android/quickstep/logging/StatsLogCompatManager.java @@ -139,11 +139,9 @@ public class StatsLogCompatManager extends StatsLogManager { info.getIsWork() /* is_work_profile */, info.getAttribute().getNumber() /* origin */, getCardinality(info) /* cardinality */, - info.getWidget().getSpanX() /* span_x */, - info.getWidget().getSpanY() /* span_y */, - getFeatures(info) /* features */, - null/*itemAttributes*/ - ); + info.getWidget().getSpanX(), + info.getWidget().getSpanY(), + getFeatures(info)); } /** @@ -172,9 +170,7 @@ public class StatsLogCompatManager extends StatsLogManager { info.getAttribute().getNumber(), // attribute_id = 15; getCardinality(info), // cardinality = 16; info.getWidget().getSpanX(), // span_x = 17 [default = 1]; - info.getWidget().getSpanY(), // span_y = 18 [default = 1]; - 0, // int32 features = 19; - null // repeated int32 item_attributes = 20; + info.getWidget().getSpanY() // span_y = 18 [default = 1]; ); } @@ -417,8 +413,7 @@ public class StatsLogCompatManager extends StatsLogManager { atomInfo.getFolderIcon().getLabelInfo() /* edittext */, getCardinality(atomInfo) /* cardinality */, getFeatures(atomInfo) /* features */, - getSearchAttributes(atomInfo) /* searchAttributes */, - null/*itemAttributes*/ + getSearchAttributes(atomInfo) /* searchAttributes */ ); } }