MME-13 Add missing hashCode implementation.

This commit is contained in:
Jesse Brault 2026-02-13 08:01:40 -06:00
parent fd08a4df13
commit a92084a35a

View File

@ -56,4 +56,9 @@ public final class RecipeStar {
} }
} }
@Override
public int hashCode() {
return Objects.hash(this.recipe.getOwner().getUsername(), this.recipe.getSlug(), this.owner.getUsername());
}
} }