Skip to content

Commit

Permalink
BugFix fixed comparison of field with itself
Browse files Browse the repository at this point in the history
  • Loading branch information
dk2k committed Jul 5, 2024
1 parent 1616dbe commit 0e2918e
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 0e2918e

Please sign in to comment.