Merge "Add locusId as something taskOrganizers care about" into sc-v2-dev

This commit is contained in:
Mady Mellor
2021-11-03 00:47:12 +00:00
committed by Android (Google) Code Review

View File

@@ -368,7 +368,8 @@ public class TaskInfo {
&& Objects.equals(taskDescription, that.taskDescription)
&& isFocused == that.isFocused
&& isVisible == that.isVisible
&& isSleeping == that.isSleeping;
&& isSleeping == that.isSleeping
&& Objects.equals(mTopActivityLocusId, that.mTopActivityLocusId);
}
/**