Merge "Add null check to Task#equals()" into udc-qpr-dev

This commit is contained in:
Jeremy Sim
2023-08-08 00:56:04 +00:00
committed by Android (Google) Code Review

View File

@@ -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);