Skip to content

Commit c380a8a

Browse files
committed
Fomat error modified
Again format error modified.
1 parent 071c4b9 commit c380a8a

File tree

1 file changed

+2
-10
lines changed

1 file changed

+2
-10
lines changed

examples/src/main/java/io/kubernetes/client/examples/ExpandedExample.java

Lines changed: 2 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ public class ExpandedExample {
4343

4444
private final CoreV1Api corev1Api;
4545
private static final String DEFAULT_NAME_SPACE = "default";
46-
private final static Integer TIME_OUT_VALUE = 180;
46+
private static final Integer TIME_OUT_VALUE = 180;
4747
/*
4848
For API_SERVER_NAME, you can get the server name as follows.
4949
$ kubectl cluster-info|grep master
@@ -125,15 +125,7 @@ public static void main(String[] args) {
125125
public List<String> getAllNameSpaces() throws ApiException {
126126
V1NamespaceList listNamespace =
127127
corev1Api.listNamespace(
128-
"true",
129-
null,
130-
null,
131-
Boolean.FALSE,
132-
null,
133-
0,
134-
null,
135-
Integer.MAX_VALUE,
136-
Boolean.FALSE);
128+
"true", null, null, Boolean.FALSE, null, 0, null, Integer.MAX_VALUE, Boolean.FALSE);
137129
List<String> list =
138130
listNamespace
139131
.getItems()

0 commit comments

Comments
 (0)