Skip to content

Commit ed920db

Browse files
fix linter
1 parent 75fac1d commit ed920db

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

src/Ydb.Sdk/src/Ado/Internal/SqlParser.cs

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -276,10 +276,7 @@ private static (string Name, int NextToken) ParseNameParam(string sql, int curTo
276276
return ($"${sql[prevToken .. curToken]}", curToken);
277277
}
278278

279-
public static bool IsSqlIdentifierChar(this char c)
280-
{
281-
return char.IsLetterOrDigit(c) || c == '_';
282-
}
279+
private static bool IsSqlIdentifierChar(this char c) => char.IsLetterOrDigit(c) || c == '_';
283280

284281
private class SqlParamsBuilder
285282
{

0 commit comments

Comments
 (0)