Skip to content

Commit

Permalink
Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
glucaci committed Apr 15, 2021
1 parent 2164e0c commit 8fd8bba
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/WorkflowCore/Services/WorkflowMiddlewareRunner.cs
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,9 @@ private static Task RunWorkflowMiddleware(
{
return middlewareCollection
.Reverse()
.Aggregate(NoopWorkflowDelegate,
(previous, middleware) =>
() => middleware.HandleAsync(workflow, previous))();
.Aggregate(
NoopWorkflowDelegate,
(previous, middleware) => () => middleware.HandleAsync(workflow, previous))();
}
}
}

0 comments on commit 8fd8bba

Please sign in to comment.