Skip to content

Commit fb7efca

Browse files
csviriDonnerbart
authored andcommitted
fix: hash code for mysql sample (operator-framework#2910)
Signed-off-by: Attila Mészáros <[email protected]>
1 parent 55b4289 commit fb7efca

File tree

1 file changed

+1
-1
lines changed
  • sample-operators/mysql-schema/src/main/java/io/javaoperatorsdk/operator/sample/schema

1 file changed

+1
-1
lines changed

sample-operators/mysql-schema/src/main/java/io/javaoperatorsdk/operator/sample/schema/Schema.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public boolean equals(Object o) {
3131

3232
@Override
3333
public int hashCode() {
34-
return Objects.hash(name, characterSet);
34+
return Objects.hash(name);
3535
}
3636

3737
@Override

0 commit comments

Comments
 (0)