diff --git a/examples/examples-release-latest/src/main/java/io/kubernetes/client/examples/ServerSideApplyExample.java b/examples/examples-release-latest/src/main/java/io/kubernetes/client/examples/ServerSideApplyExample.java index 8d7e7b1968..4eb1ae34a7 100644 --- a/examples/examples-release-latest/src/main/java/io/kubernetes/client/examples/ServerSideApplyExample.java +++ b/examples/examples-release-latest/src/main/java/io/kubernetes/client/examples/ServerSideApplyExample.java @@ -65,7 +65,7 @@ public static void main(String[] args) throws IOException, ApiException { // that another manager may have changed in the meantime. configMap.data(Map.of("greeting", "hello again")); V1ConfigMap updated = - ServerSideApply.builder(client) + ServerSideApply.builder(client) .apiTypeClass(V1ConfigMap.class) .apiListTypeClass(V1ConfigMapList.class) .resource(configMap) @@ -77,7 +77,7 @@ public static void main(String[] args) throws IOException, ApiException { // A dry-run apply is validated by the server but never persisted. configMap.data(Map.of("greeting", "not persisted")); V1ConfigMap dryRun = - ServerSideApply.builder(client) + ServerSideApply.builder(client) .apiTypeClass(V1ConfigMap.class) .apiListTypeClass(V1ConfigMapList.class) .resource(configMap)