File tree 1 file changed +7
-5
lines changed
operator-common/src/main/java/io/strimzi/operator/common/featuregates
1 file changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -124,12 +124,14 @@ public boolean equals(Object o) {
124
124
return true ;
125
125
} else if (o == null || getClass () != o .getClass ()) {
126
126
return false ;
127
- } else {
128
- FeatureGates other = (FeatureGates ) o ;
129
- return other instanceof FeatureGates ;
130
- // TODO: Once we have new FeatureGate, we should implement the equals method (below is example)
131
- // return Objects.equals(continueOnManualRUFailure, other.continueOnManualRUFailure);
132
127
}
128
+ // TODO: Once we have new FeatureGate, we should implement the equals method (below is example)
129
+ // else {
130
+ // FeatureGates other = (FeatureGates) o;
131
+ // return Objects.equals(continueOnManualRUFailure, other.continueOnManualRUFailure);
132
+ // }
133
+
134
+ return true ;
133
135
}
134
136
135
137
@ Override
You can’t perform that action at this time.
0 commit comments