Skip to content

Commit 57c4482

Browse files
authored
fix: typo in withParseResourceVersions (#2563)
1 parent ec8972e commit 57c4482

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed

operator-framework-core/src/main/java/io/javaoperatorsdk/operator/api/config/ConfigurationServiceOverrider.java

+16
Original file line numberDiff line numberDiff line change
@@ -176,6 +176,22 @@ public ConfigurationServiceOverrider withPreviousAnnotationForDependentResources
176176
return this;
177177
}
178178

179+
/**
180+
* @param value true if internal algorithms can use metadata.resourceVersion as a numeric value.
181+
* @return this
182+
*/
183+
public ConfigurationServiceOverrider withParseResourceVersions(
184+
boolean value) {
185+
this.parseResourceVersions = value;
186+
return this;
187+
}
188+
189+
/**
190+
* @deprecated use withParseResourceVersions
191+
* @param value true if internal algorithms can use metadata.resourceVersion as a numeric value.
192+
* @return this
193+
*/
194+
@Deprecated(forRemoval = true)
179195
public ConfigurationServiceOverrider wihtParseResourceVersions(
180196
boolean value) {
181197
this.parseResourceVersions = value;

0 commit comments

Comments
 (0)