Skip to content

Commit 350bed0

Browse files
committed
cleanup
1 parent 091e474 commit 350bed0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

StyleCop.Analyzers/StyleCop.Analyzers/SpacingRules/SA1001CommasMustBeSpacedCorrectly.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ internal class SA1001CommasMustBeSpacedCorrectly : DiagnosticAnalyzer
3030
/// The ID for diagnostics produced by the <see cref="SA1001CommasMustBeSpacedCorrectly"/> analyzer.
3131
/// </summary>
3232
public const string DiagnosticId = "SA1001";
33+
3334
private const string HelpLink = "https://github.com/DotNetAnalyzers/StyleCopAnalyzers/blob/master/documentation/SA1001.md";
3435
private static readonly LocalizableString Title = new LocalizableResourceString(nameof(SpacingResources.SA1001Title), SpacingResources.ResourceManager, typeof(SpacingResources));
3536
private static readonly LocalizableString MessageFormat = new LocalizableResourceString(nameof(SpacingResources.SA1001MessageFormat), SpacingResources.ResourceManager, typeof(SpacingResources));
@@ -84,7 +85,6 @@ private static void HandleCommaToken(SyntaxTreeAnalysisContext context, SyntaxTo
8485
trivia.IsKind(SyntaxKind.ElseDirectiveTrivia) ||
8586
trivia.IsKind(SyntaxKind.EndIfDirectiveTrivia)))
8687
{
87-
// Ignore this comma as it follows a conditional preprocessor directive
8888
return;
8989
}
9090

0 commit comments

Comments
 (0)