chore(sonar): bulk-fix production INFO analyzer warnings + skill update #12

Merged
bermudalamb merged 7 commits from chore/sonarqube-info-prod-bulk into main 2026-05-26 16:49:02 -05:00
5 changed files with 6 additions and 6 deletions
Showing only changes of commit 6af239035b - Show all commits
@@ -115,7 +115,7 @@ public static class Markdown
return ParseAtomicExpression(text);
}
private static Expression? TryParseLogicalOperation(string text)
private static BoolExpr? TryParseLogicalOperation(string text)
{
foreach (var op in LogicalOperators.Keys)
{
@@ -130,7 +130,7 @@ public static class Markdown
return null;
}
private static Expression? TryParseComparison(string text)
private static Comparison? TryParseComparison(string text)
{
foreach (var op in ComparisonOperators.Keys)
{
+1 -1
View File
@@ -50,7 +50,7 @@ public class RuleSet : IGroup
/// </summary>
/// <param name="group">The rule group to traverse.</param>
/// <returns>An enumerable of all single rules found in the group.</returns>
private static IEnumerable<SingleRule> GetAllSingleRules(IGroup group)
private static List<SingleRule> GetAllSingleRules(IGroup group)
{
var rules = new List<SingleRule>();
foreach (var rule in group.Rules)
@@ -85,7 +85,7 @@ public class SqlExpressionClause : SqlClause, ISqlExpressionClause
/// </summary>
/// <param name="clause">The clause to split.</param>
/// <returns>An enumerable collection of individual items.</returns>
private static IEnumerable<string> SplitOnComma(string clause)
private static List<string> SplitOnComma(string clause)
{
var items = new List<string>();
var current = new StringBuilder();
@@ -11,7 +11,7 @@ public class QueryBreakdownRepositoryTests
{
private DbContext _dbContext = null!;
private IQueryBreakdownMapper _mapper = null!;
private IQueryBreakdownRepository _repository = null!;
private QueryBreakdownRepository _repository = null!;
[SetUp]
public void Setup()
@@ -148,7 +148,7 @@ public class Tests
return result;
}
static System.Linq.Expressions.Expression StartsWith(System.Linq.Expressions.Expression expression, string value)
static MethodCallExpression StartsWith(System.Linq.Expressions.Expression expression, string value)
{
return StartsWith(expression, LinqExpression.Constant(value));
}