Skip to content

Commit

Permalink
Fix errors
Browse files Browse the repository at this point in the history
  • Loading branch information
KostasTsiounis committed Jan 13, 2025
1 parent 96f49d9 commit 68bcc62
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1879,7 +1879,7 @@ public boolean equals(Object obj) {
if (obj instanceof Constraint other) {
return Objects.equals(type, other.type)
&& Objects.equals(algorithm, other.algorithm)
&& Objects.equals(attributes, other.attributes);
&& Objects.equals(attributes, other.attributes)
&& Objects.equals(acceptedUses, other.acceptedUses);
}
return false;
Expand Down

0 comments on commit 68bcc62

Please sign in to comment.