Skip to content

Commit

Permalink
implemented default hashCode
Browse files Browse the repository at this point in the history
  • Loading branch information
car031 committed Jan 7, 2025
1 parent 3c5a95d commit b4702de
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -131,4 +131,9 @@ private String avatarContent(String formattedValue, Object avatarId, String text
public boolean equals(Object other) {
return super.equals(other);
}

@Override
public int hashCode() {
return super.hashCode();
}
}

0 comments on commit b4702de

Please sign in to comment.