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 cd4108d commit 6cf2c64Copy full SHA for 6cf2c64
kubernetes/src/main/java/io/kubernetes/client/custom/BaseExponent.java
@@ -41,9 +41,7 @@ public boolean equals(Object o) {
41
42
BaseExponent that = (BaseExponent) o;
43
44
- if (base != that.base) return false;
45
- if (exponent != that.exponent) return false;
46
- return format == that.format;
+ return base == that.base && exponent == that.exponent && format == that.format;
47
}
48
49
@Override
0 commit comments