-
Notifications
You must be signed in to change notification settings - Fork 237
Closed
Labels
False NegativeRule is NOT triggered when it should be.Rule is NOT triggered when it should be.
Milestone
Description
Description
S1144 highlights unused private methods, but unused local methods are not accounted for when this check is performed.
Repro steps
public class MyClass
{
public void MethodUsingLocalMethod()
{
void LocalMethod() // FN: local function is never used
{
}
}
}
Expected behavior
An issue should be raised for this local function.
Actual behavior
No issue is raised.
Known workarounds
None.
Related information
- C#/VB.NET Plugins version: 8.52
- Visual Studio version: 2022 17.4.4
- Operating System: Windows 10 Pro (10.0.19045)
andrei-epure-sonarsource
Metadata
Metadata
Assignees
Labels
False NegativeRule is NOT triggered when it should be.Rule is NOT triggered when it should be.