Skip to content

Commit

Permalink
[hotfix][runtime] Adds missing @nullable annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
XComp committed Jul 3, 2024
1 parent 097fc7d commit 446b582
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public CreatingExecutionGraph(
executionGraphWithParallelismFuture,
Logger logger,
OperatorCoordinatorHandlerFactory operatorCoordinatorFactory,
ExecutionGraph previousExecutionGraph1) {
@Nullable ExecutionGraph previousExecutionGraph) {
super(context, logger);
this.context = context;
this.operatorCoordinatorHandlerFactory = operatorCoordinatorFactory;
Expand All @@ -83,7 +83,7 @@ public CreatingExecutionGraph(
Duration.ZERO);
return null;
}));
previousExecutionGraph = previousExecutionGraph1;
this.previousExecutionGraph = previousExecutionGraph;
}

private void handleExecutionGraphCreation(
Expand Down

0 comments on commit 446b582

Please sign in to comment.