Skip to content

Commit 34142cf

Browse files
committed
don't throw
1 parent 04a7f98 commit 34142cf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/FluentAssertions.Analyzers/Tips/AsyncVoid.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public class AsyncVoidCodeFix : CodeFixProvider
7676
public override ImmutableArray<string> FixableDiagnosticIds => ImmutableArray.Create(AsyncVoidAnalyzer.DiagnosticId);
7777
public override Task RegisterCodeFixesAsync(CodeFixContext context)
7878
{
79-
throw new NotImplementedException();
79+
return Task.CompletedTask;
8080
}
8181
}
8282
}

0 commit comments

Comments
 (0)