Skip to content

Commit

Permalink
fix hashing for EolCollectionType
Browse files Browse the repository at this point in the history
  • Loading branch information
pkourouklidis committed Nov 26, 2024
1 parent 0251242 commit 2c58910
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public String toString() {

@Override
public int hashCode() {
return Objects.hash(getName());
return Objects.hash(toString());
}

@Override
Expand Down

0 comments on commit 2c58910

Please sign in to comment.