Skip to content

Commit

Permalink
Fix #325: OperationTemplateEntity equals uses generated id
Browse files Browse the repository at this point in the history
  • Loading branch information
banterCZ committed Aug 25, 2022
1 parent c6b77ad commit 0ba4851
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -65,8 +65,7 @@ public boolean equals(Object o) {
if (this == o) return true;
if (!(o instanceof OperationTemplateEntity)) return false;
OperationTemplateEntity that = (OperationTemplateEntity) o;
return id.equals(that.id)
&& Objects.equals(placeholder, that.placeholder)
return Objects.equals(placeholder, that.placeholder)
&& Objects.equals(language, that.language)
&& Objects.equals(title, that.title)
&& Objects.equals(message, that.message)
Expand Down

0 comments on commit 0ba4851

Please sign in to comment.