Skip to content
Merged
Changes from 3 commits
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
4 changes: 1 addition & 3 deletions src/Formatting.Analyzers/CSharp/AccessorListAnalyzer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -59,9 +59,7 @@ private static void AnalyzeAccessorList(SyntaxNodeAnalysisContext context)
DiagnosticHelpers.ReportDiagnostic(
context,
DiagnosticRules.PutFullAccessorOnItsOwnLine,
Location.Create(accessor.SyntaxTree, new TextSpan(accessor.SpanStart, 0)));

break;
accessor);
}

token = accessor.Body?.CloseBraceToken ?? accessor.SemicolonToken;
Expand Down
Loading