refactor: Removing redundant code

This commit is contained in:
Chris Cameron
2018-10-22 14:03:03 -04:00
parent ba8c1d98a1
commit 5afc676fbe

View File

@@ -102,7 +102,7 @@ namespace ICD.Common.Utils
return output;
}
foreach (string line in progInfo.Split(new[] {"\n\r", "\r\n", "\n", "\r"}))
foreach (string line in progInfo.Split(new[] {'\r', '\n'}))
{
if (string.IsNullOrEmpty(line))
continue;