Skip to content

Commit

Permalink
Removed duplicate ;
Browse files Browse the repository at this point in the history
  • Loading branch information
jack-nimbleapproach committed Jan 23, 2025
1 parent 7c36380 commit a2efc05
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
var regions = Enum.GetValues<ProjectRegion>();
var regionLabels = (from object region in regions select region.ToDescription()).ToList();

var projectStatuses = Enum.GetValues<ProjectStatus>().Except(new[] { ProjectStatus.CancelledDuringPreOpening, ProjectStatus.WithdrawnDuringPreOpening }); ;
var projectStatuses = Enum.GetValues<ProjectStatus>().Except(new[] { ProjectStatus.CancelledDuringPreOpening, ProjectStatus.WithdrawnDuringPreOpening });
var projectStatusLabels = (from ProjectStatus status in projectStatuses select status.ToDescription()).ToList();

projectStatusLabels.Sort();
Expand Down

0 comments on commit a2efc05

Please sign in to comment.