Skip to content

Commit 84f185f

Browse files
Update src/Analyzers/Core/Analyzers/RemoveUnusedMembers/AbstractRemoveUnusedMembersDiagnosticAnalyzer.cs
1 parent 0d2b2d8 commit 84f185f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Analyzers/Core/Analyzers/RemoveUnusedMembers/AbstractRemoveUnusedMembersDiagnosticAnalyzer.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -456,8 +456,8 @@ private void AnalyzeInvocationOperation(OperationAnalysisContext operationContex
456456
// to ensure that we consider the method as "used".
457457
OnSymbolUsage(targetMethod, ValueUsageInfo.Read);
458458

459-
//// If the invoked method is a reduced extension method, also mark the original
460-
//// method from which it was reduced as "used".
459+
// If the invoked method is a reduced extension method, also mark the original
460+
// method from which it was reduced as "used".
461461
if (targetMethod.ReducedFrom != null)
462462
OnSymbolUsage(targetMethod.ReducedFrom, ValueUsageInfo.Read);
463463
}

0 commit comments

Comments
 (0)