Skip to content

Commit aa9db1b

Browse files
committed
Fix CheckStyle
1 parent 1447b39 commit aa9db1b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

operator/src/main/java/oracle/kubernetes/operator/helpers/CallBuilder.java

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) 2017, 2023, Oracle and/or its affiliates.
1+
// Copyright (c) 2017, 2024, Oracle and/or its affiliates.
22
// Licensed under the Universal Permissive License v 1.0 as shown at https://oss.oracle.com/licenses/upl.
33

44
package oracle.kubernetes.operator.helpers;
@@ -1696,10 +1696,6 @@ private Call listJobAsync(
16961696
callback);
16971697
}
16981698

1699-
private final CallFactory<V1JobList> listJob =
1700-
(requestParams, usage, cont, callback) ->
1701-
wrap(listJobAsync(usage, requestParams.namespace, cont, callback));
1702-
17031699
/**
17041700
* Asynchronous step for listing jobs.
17051701
*
@@ -1712,6 +1708,10 @@ public Step listJobAsync(String namespace, ResponseStep<V1JobList> responseStep)
17121708
responseStep, new RequestParams("listJob", namespace, null, null, callParams), listJob);
17131709
}
17141710

1711+
private final CallFactory<V1JobList> listJob =
1712+
(requestParams, usage, cont, callback) ->
1713+
wrap(listJobAsync(usage, requestParams.namespace, cont, callback));
1714+
17151715
private Call createJobAsync(
17161716
ApiClient client, String namespace, V1Job body, ApiCallback<V1Job> callback)
17171717
throws ApiException {

0 commit comments

Comments
 (0)