Skip to content

Commit

Permalink
feat(processes): remove redundant select
Browse files Browse the repository at this point in the history
Refs: #240
  • Loading branch information
Phil91 committed Jan 17, 2025
1 parent 3b2f424 commit 00e880d
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,6 @@ public static void ScheduleProcessSteps<TProcessType, TProcessStepType, TProcess
context.ProcessRepositories.GetInstance<IProcessStepRepository<TProcessType, TProcessStepType, TProcessTypeId, TProcessStepTypeId>>()
.CreateProcessStepRange(
processStepTypeIds
.Select(x => x)
.Except(context.ProcessSteps.Select(step => step.ProcessStepTypeId))
.Select(stepTypeId => (stepTypeId, ProcessStepStatusId.TODO, context.Process.Id)));

Expand Down

0 comments on commit 00e880d

Please sign in to comment.