Merge "Add locusId as something taskOrganizers care about" into sc-v2-dev am: 80a34bc07e am: a641ccc607

Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/base/+/16168978

Change-Id: I91b1833471a575c97e72ebb0642a0926566d88dc
This commit is contained in:
Mady Mellor
2021-11-03 01:06:51 +00:00
committed by Automerger Merge Worker

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);
}
/**