Skip to content

Commit

Permalink
fix equals of ChannelFamily to fix PAYG Product Migration check
Browse files Browse the repository at this point in the history
  • Loading branch information
mcalmer committed Aug 22, 2023
1 parent f9602ad commit 697b1e6
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -136,10 +136,10 @@ public boolean equals(final Object other) {
}
ChannelFamily castOther = (ChannelFamily) other;

return new EqualsBuilder().append(id, castOther.id)
.append(label, castOther.label)
.append(name, castOther.name)
.append(org, castOther.org)
return new EqualsBuilder().append(id, castOther.getId())
.append(label, castOther.getLabel())
.append(name, castOther.getName())
.append(org, castOther.getOrg())
.isEquals();
}

Expand Down

0 comments on commit 697b1e6

Please sign in to comment.