Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix S3963 FP: Static constructor with conditional and no static filed initialization #9512

Merged
merged 3 commits into from
Jul 11, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ protected override void Initialize(SonarAnalysisContext context) =>
.Distinct()
.Count();
var hasIfOrSwitch = Array.Exists(bodyDescendantNodes, x => x.IsAnyKind(SyntaxKind.IfStatement, SyntaxKind.SwitchStatement));
if ((hasIfOrSwitch && assignedFieldCount <= 1)
if ((hasIfOrSwitch && assignedFieldCount == 1)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

one line :)

|| (!hasIfOrSwitch && assignedFieldCount > 0))
{
c.ReportIssue(Rule, constructor.Identifier);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ static ReproSwitchMulti() // Compliant, because there are multiple variable a
public static class TestUtil
{
// https://github.com/SonarSource/sonar-dotnet/issues/6343
static TestUtil() // Noncompliant - FP, there are no static fields
static TestUtil() // Compliant
{
if (!Directory.Exists(""))
{
Expand Down
Loading