Skip to content

Commit 5167096

Browse files
committed
Removed useless throw-if-null exception
1 parent 5af9a2c commit 5167096

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

src/ProgressOnderwijsUtils/Data/ParameterizedSql.cs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,6 @@ static bool ValidSubsequentIdentifierChar(char c) //https://learn.microsoft.com/
9696
/// </summary>
9797
public static ParameterizedSql UnescapedSqlIdentifier(string rawSqlString)
9898
{
99-
ArgumentNullException.ThrowIfNull(nameof(rawSqlString));
10099
AssertIsIdentifier(rawSqlString, 0);
101100
return new StringSqlFragment(rawSqlString).BuildableToQuery();
102101
}

0 commit comments

Comments
 (0)