Skip to content

Commit

Permalink
added curly braces
Browse files Browse the repository at this point in the history
  • Loading branch information
IamRanjeetSingh committed Sep 16, 2024
1 parent 8d7d10f commit 338b14e
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -353,7 +353,9 @@ private void ExportBusinessFlowBPMN()
.Select(activity =>
{
if (activity == null || !activity.Active || activity.Acts == null)
{
return 0;
}
return activity.Acts.Where(act => act != null && act.Active).Count();
})
.Aggregate((count, total) => total + count);
Expand Down

0 comments on commit 338b14e

Please sign in to comment.