Skip to content

Commit ba91e6b

Browse files
committed
Indentation on break in mod fix provider
1 parent dde0ae7 commit ba91e6b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools-local/Microsoft.ML.CodeAnalyzer/ModifierFixProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -156,7 +156,7 @@ public override async Task RegisterCodeFixesAsync(CodeFixContext context)
156156
case SyntaxKind.EventDeclaration:
157157
var evDec = (EventDeclarationSyntax)parent;
158158
RegisterFix(context, diagnostic, evDec.Modifiers, evDec.WithModifiers, privateAc, evDec);
159-
break;
159+
break;
160160
case SyntaxKind.ClassDeclaration:
161161
var cls = (ClassDeclarationSyntax)parent;
162162
RegisterFix(context, diagnostic, cls.Modifiers, cls.WithModifiers, IsNested(parent), cls);

0 commit comments

Comments
 (0)