File tree Expand file tree Collapse file tree 1 file changed +0
-2
lines changed
extended/src/main/java/io/kubernetes/client/extended/kubectl Expand file tree Collapse file tree 1 file changed +0
-2
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,6 @@ public ApiType execute() throws KubectlException {
42
42
return getGenericApi ().delete (namespace , name ).throwsApiException ().getObject ();
43
43
} catch (ApiException e ) {
44
44
if (ignoreNotFound && e .getCode () == 404 ) {
45
- System .out .println ("Ignoring resource not found." );
46
45
return null ;
47
46
} else {
48
47
throw new KubectlException (e );
@@ -53,7 +52,6 @@ public ApiType execute() throws KubectlException {
53
52
return getGenericApi ().delete (name ).throwsApiException ().getObject ();
54
53
} catch (ApiException e ) {
55
54
if (ignoreNotFound && e .getCode () == 404 ) {
56
- System .out .println ("Ignoring resource not found." );
57
55
return null ;
58
56
} else {
59
57
throw new KubectlException (e );
You can’t perform that action at this time.
0 commit comments