Skip to content

Commit

Permalink
add hashcode
Browse files Browse the repository at this point in the history
  • Loading branch information
huan233usc committed Mar 5, 2025
1 parent f753c46 commit 6c4a48c
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,4 +94,9 @@ public boolean equals(Object o) {
Format format = (Format) o;
return provider.equals(format.provider) && options.equals(format.options);
}

@Override
public int hashCode() {
return Objects.hash(provider, options);
}
}

0 comments on commit 6c4a48c

Please sign in to comment.