We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f37eee2 commit cb1bfc2Copy full SHA for cb1bfc2
kubernetes/src/main/java/io/kubernetes/client/custom/BaseExponent.java
@@ -45,9 +45,6 @@ public boolean equals(Object o) {
45
46
@Override
47
public int hashCode() {
48
- int result = base;
49
- result = 31 * result + exponent;
50
- result = 31 * result + (format != null ? format.hashCode() : 0);
51
- return result;
+ return this.toString().hashCode();
52
}
53
0 commit comments