Skip to content

Commit

Permalink
fix order of comparison
Browse files Browse the repository at this point in the history
  • Loading branch information
alovew committed Sep 7, 2022
1 parent 309b243 commit e3e3009
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -70,9 +70,9 @@ public boolean equals(final Object o) {
return false;
}
final TrackingIdentity that = (TrackingIdentity) o;
return anonymousDataCollection.equals(that.anonymousDataCollection) &&
news.equals(that.news) &&
securityUpdates.equals(that.securityUpdates) &&
return that.anonymousDataCollection.equals(anonymousDataCollection) &&
that.news.equals(news) &&
that.securityUpdates.equals(securityUpdates) &&
Objects.equals(customerId, that.customerId) &&
Objects.equals(email, that.email);
}
Expand Down

0 comments on commit e3e3009

Please sign in to comment.