Skip to content

Commit

Permalink
fix IsNullOrWhiteSpace to IsNullOrEmpty incorrect change
Browse files Browse the repository at this point in the history
  • Loading branch information
Wraith2 committed Mar 14, 2023
1 parent 7645617 commit bcff50e
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -34,7 +34,7 @@ internal static void ValidateNotNullOrWhitespaceForEach(string[] parameters, str
{
for (int index = 0; index < parameters.Length; index++)
{
if (string.IsNullOrEmpty(parameters[index]))
if (string.IsNullOrWhiteSpace(parameters[index]))
{
throw ADP.NullOrWhitespaceForEach(name);
}
Expand Down

0 comments on commit bcff50e

Please sign in to comment.