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
44package 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