Skip to content

Commit

Permalink
Merge pull request #41716 from dk2k/dk2k_fix_equals_itself
Browse files Browse the repository at this point in the history
BugFix fixed comparison of field with itself
  • Loading branch information
gsmet authored Jul 6, 2024
2 parents 8a9ec14 + 0e2918e commit d7c8f08
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ public boolean equals(Object o) {
Objects.equals(shared, that.shared) &&
Objects.equals(serviceName, that.serviceName) &&
Objects.equals(imageName, that.imageName) &&
Objects.equals(artifacts, this.artifacts) &&
Objects.equals(artifacts, that.artifacts) &&
Objects.equals(containerEnv, that.containerEnv);
}

Expand Down

0 comments on commit d7c8f08

Please sign in to comment.