Skip to content

Commit 653f954

Browse files
committed
removed print
1 parent f9d5723 commit 653f954

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

extended/src/main/java/io/kubernetes/client/extended/kubectl/KubectlDelete.java

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ public ApiType execute() throws KubectlException {
4242
return getGenericApi().delete(namespace, name).throwsApiException().getObject();
4343
} catch (ApiException e) {
4444
if (ignoreNotFound && e.getCode() == 404) {
45-
System.out.println("Ignoring resource not found.");
4645
return null;
4746
} else {
4847
throw new KubectlException(e);
@@ -53,7 +52,6 @@ public ApiType execute() throws KubectlException {
5352
return getGenericApi().delete(name).throwsApiException().getObject();
5453
} catch (ApiException e) {
5554
if (ignoreNotFound && e.getCode() == 404) {
56-
System.out.println("Ignoring resource not found.");
5755
return null;
5856
} else {
5957
throw new KubectlException(e);

0 commit comments

Comments
 (0)