Skip to content

Commit

Permalink
removed unneeded array
Browse files Browse the repository at this point in the history
  • Loading branch information
sargeantPig committed Oct 20, 2023
1 parent 6e8babe commit 2449ede
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RTWLibPlus/parsers/DepthParse.cs
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ private void SetNLWithDepth(List<IbaseObj> objs, int depth, int value, int curre
}
private string[] GetLinesRemoveEmpty(string text)
{
return text.Split(Format.UniversalNewLine().ToCharArray(), StringSplitOptions.RemoveEmptyEntries);
return text.Split(Format.UniversalNewLine(), StringSplitOptions.RemoveEmptyEntries);
}
private string[] GetLines(string text)
{
Expand Down

0 comments on commit 2449ede

Please sign in to comment.