Skip to content

Commit 0bd215b

Browse files
committed
Remove unnecessary variable
1 parent 70f8582 commit 0bd215b

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

operator/src/main/java/oracle/kubernetes/operator/DomainStatusUpdater.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ private ResponseStep<Domain> createResponseStep(DomainStatusUpdaterContext conte
241241
Step next) {
242242
return new StatusReplaceResponseStep(this,
243243
/* MARKER-2.6.0-ONLY */
244-
newStatus, useDomainStatusEndpoint,
244+
newStatus,
245245
/* END-2.6.0-ONLY */
246246
context, next);
247247
}
@@ -252,21 +252,18 @@ static class StatusReplaceResponseStep extends DefaultResponseStep<Domain> {
252252
private final DomainStatusUpdaterContext context;
253253
/* MARKER-2.6.0-ONLY */
254254
private final DomainStatus newStatus;
255-
private final boolean useDomainStatusEndpoint;
256255
/* END-2.6.0-ONLY */
257256

258257
public StatusReplaceResponseStep(DomainStatusUpdaterStep updaterStep,
259258
/* MARKER-2.6.0-ONLY */
260259
DomainStatus newStatus,
261-
boolean useDomainStatusEndpoint,
262260
/* END-2.6.0-ONLY */
263261
DomainStatusUpdaterContext context, Step nextStep) {
264262
super(nextStep);
265263
this.updaterStep = updaterStep;
266264
this.context = context;
267265
/* MARKER-2.6.0-ONLY */
268266
this.newStatus = newStatus;
269-
this.useDomainStatusEndpoint = useDomainStatusEndpoint;
270267
/* END-2.6.0-ONLY */
271268
}
272269

0 commit comments

Comments
 (0)