Skip to content

Commit

Permalink
Remove empty items.
Browse files Browse the repository at this point in the history
  • Loading branch information
wasabii committed Dec 18, 2023
1 parent 0573f7a commit 4ddcfff
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ static bool IsParentedBy(string rid, string parentRid)
/// <returns></returns>
public override bool Execute()
{
MatchNearestItemGroups(TargetRuntimeIdentifiers.Split(';'));
MatchNearestItemGroups(TargetRuntimeIdentifiers.Split(new[] { ';' }, StringSplitOptions.RemoveEmptyEntries));
return true;
}

Expand Down

0 comments on commit 4ddcfff

Please sign in to comment.