Skip to content

Commit

Permalink
spotless
Browse files Browse the repository at this point in the history
  • Loading branch information
mschoeb committed Oct 30, 2024
1 parent 5130a5e commit 3c8fad8
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,9 @@ protected Item nextLocal() {
this.result = this.childIterator.materialize(this.currentDynamicContextForLocalExecution);
this.pendingUpdateList = new PendingUpdateList();
if (this.childIterator.isUpdating()) {
this.pendingUpdateList = this.childIterator.getPendingUpdateList(this.currentDynamicContextForLocalExecution);
this.pendingUpdateList = this.childIterator.getPendingUpdateList(
this.currentDynamicContextForLocalExecution
);
}
throw new ExitStatementException(
this.pendingUpdateList,
Expand Down

0 comments on commit 3c8fad8

Please sign in to comment.