Skip to content

Commit

Permalink
fix: typo in withParseResourceVersions (#2563)
Browse files Browse the repository at this point in the history
  • Loading branch information
csviri authored Oct 28, 2024
1 parent ec8972e commit 57c4482
Showing 1 changed file with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,22 @@ public ConfigurationServiceOverrider withPreviousAnnotationForDependentResources
return this;
}

/**
* @param value true if internal algorithms can use metadata.resourceVersion as a numeric value.
* @return this
*/
public ConfigurationServiceOverrider withParseResourceVersions(
boolean value) {
this.parseResourceVersions = value;
return this;
}

/**
* @deprecated use withParseResourceVersions
* @param value true if internal algorithms can use metadata.resourceVersion as a numeric value.
* @return this
*/
@Deprecated(forRemoval = true)
public ConfigurationServiceOverrider wihtParseResourceVersions(
boolean value) {
this.parseResourceVersions = value;
Expand Down

0 comments on commit 57c4482

Please sign in to comment.