Loading packages/SystemUI/shared/src/com/android/systemui/shared/recents/model/Task.java +8 −0 Original line number Diff line number Diff line Loading @@ -336,6 +336,14 @@ public class Task { @Override public boolean equals(Object o) { if (o == this) { return true; } if (!(o instanceof Task)) { return false; } // Check that the id matches Task t = (Task) o; return key.equals(t.key); Loading Loading
packages/SystemUI/shared/src/com/android/systemui/shared/recents/model/Task.java +8 −0 Original line number Diff line number Diff line Loading @@ -336,6 +336,14 @@ public class Task { @Override public boolean equals(Object o) { if (o == this) { return true; } if (!(o instanceof Task)) { return false; } // Check that the id matches Task t = (Task) o; return key.equals(t.key); Loading