Skip to content

Commit

Permalink
fix equality
Browse files Browse the repository at this point in the history
  • Loading branch information
marunjar authored and jhoobergs committed Jan 6, 2018
1 parent fb0e6a6 commit da9ff7d
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -272,8 +272,7 @@ public boolean equals(Object o) {

WeekViewEvent that = (WeekViewEvent) o;

return mId == that.mId;

return mId.equals(that.mId);
}

@Override
Expand Down

0 comments on commit da9ff7d

Please sign in to comment.