Skip to content

Commit

Permalink
Remove an unreachable null check
Browse files Browse the repository at this point in the history
  • Loading branch information
IT-VBFK authored and jnyrup committed Apr 16, 2022
1 parent d5ef320 commit 471fb8e
Showing 1 changed file with 0 additions and 5 deletions.
Expand Up @@ -49,11 +49,6 @@ private static string ConvertWildcardToRegEx(string wildcardExpression)

private string CleanNewLines(string input)
{
if (input is null)
{
return null;
}

return IgnoreNewLineDifferences ? input.RemoveNewLines() : input;
}

Expand Down

0 comments on commit 471fb8e

Please sign in to comment.