chore(sonar)!: production-code cleanup — S1168 GetQuery + CA1822 static methods #15

Merged
bermudalamb merged 5 commits from fix/sonarqube-prod-s1168-ca1822 into main 2026-05-27 14:54:06 -05:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 3c602a4625 - Show all commits
@@ -303,7 +303,7 @@ public class LinqExpressionVisitor : ExpressionVisitor
return string.IsNullOrEmpty(name) ? "*" : name;
}
private string ExtractMemberName(Expression expression)
private static string ExtractMemberName(Expression expression)
{
if (expression is MemberExpression member)
{
@@ -245,7 +245,7 @@ public class ExpressionGenerator : IVisitor<string>
/// <summary>
/// Generates a Mermaid tree diagram from an Expression tree.
/// </summary>
private string GenerateMermaidDiagram(Expression expression)
private static string GenerateMermaidDiagram(Expression expression)
{
var sb = new StringBuilder();
sb.AppendLine("```mermaid");