File tree Expand file tree Collapse file tree 1 file changed +1
-4
lines changed
operator/src/main/java/oracle/kubernetes/operator Expand file tree Collapse file tree 1 file changed +1
-4
lines changed Original file line number Diff line number Diff line change @@ -241,7 +241,7 @@ private ResponseStep<Domain> createResponseStep(DomainStatusUpdaterContext conte
241
241
Step next ) {
242
242
return new StatusReplaceResponseStep (this ,
243
243
/* MARKER-2.6.0-ONLY */
244
- newStatus , useDomainStatusEndpoint ,
244
+ newStatus ,
245
245
/* END-2.6.0-ONLY */
246
246
context , next );
247
247
}
@@ -252,21 +252,18 @@ static class StatusReplaceResponseStep extends DefaultResponseStep<Domain> {
252
252
private final DomainStatusUpdaterContext context ;
253
253
/* MARKER-2.6.0-ONLY */
254
254
private final DomainStatus newStatus ;
255
- private final boolean useDomainStatusEndpoint ;
256
255
/* END-2.6.0-ONLY */
257
256
258
257
public StatusReplaceResponseStep (DomainStatusUpdaterStep updaterStep ,
259
258
/* MARKER-2.6.0-ONLY */
260
259
DomainStatus newStatus ,
261
- boolean useDomainStatusEndpoint ,
262
260
/* END-2.6.0-ONLY */
263
261
DomainStatusUpdaterContext context , Step nextStep ) {
264
262
super (nextStep );
265
263
this .updaterStep = updaterStep ;
266
264
this .context = context ;
267
265
/* MARKER-2.6.0-ONLY */
268
266
this .newStatus = newStatus ;
269
- this .useDomainStatusEndpoint = useDomainStatusEndpoint ;
270
267
/* END-2.6.0-ONLY */
271
268
}
272
269
You can’t perform that action at this time.
0 commit comments