chore: refactor for sonarqube issues
SonarQube Analysis / sonarqube (pull_request) Successful in 6m3s

This commit is contained in:
Thom Lamb
2026-05-22 17:13:31 -05:00
parent 063d5a7ba0
commit 012e693fe1
22 changed files with 522 additions and 461 deletions
@@ -48,7 +48,7 @@ public class SqlParseException : Exception
{
Position = position;
Sql = sql ?? string.Empty;
NearText = ExtractNearText(sql, position);
NearText = ExtractNearText(Sql, position);
}
/// <summary>
@@ -63,7 +63,7 @@ public class SqlParseException : Exception
{
Position = position;
Sql = sql ?? string.Empty;
NearText = ExtractNearText(sql, position);
NearText = ExtractNearText(Sql, position);
}
private static string FormatMessage(string message, string sql, int position)