@@ -19,19 +19,13 @@ public static CodeFixContext CreateCodeFixContext(
1919 TextSpan span ,
2020 ImmutableArray < Diagnostic > diagnostics ,
2121 Action < CodeAction , ImmutableArray < Diagnostic > > registerCodeFix ,
22- #pragma warning disable IDE0060 // Remove unused parameter
23- OmniSharpCodeActionOptions options ,
24- #pragma warning restore IDE0060 // Remove unused parameter
2522 CancellationToken cancellationToken )
2623 => new ( document , span , diagnostics , registerCodeFix , cancellationToken ) ;
2724
2825 public static CodeAnalysis . CodeRefactorings . CodeRefactoringContext CreateCodeRefactoringContext (
2926 Document document ,
3027 TextSpan span ,
3128 Action < CodeAction , TextSpan ? > registerRefactoring ,
32- #pragma warning disable IDE0060 // Remove unused parameter
33- OmniSharpCodeActionOptions options ,
34- #pragma warning restore IDE0060 // Remove unused parameter
3529 CancellationToken cancellationToken )
3630 => new ( document , span , registerRefactoring , cancellationToken ) ;
3731
@@ -44,9 +38,6 @@ public static FixAllContext CreateFixAllContext(
4438 string ? codeActionEquivalenceKey ,
4539 IEnumerable < string > diagnosticIds ,
4640 FixAllContext . DiagnosticProvider fixAllDiagnosticProvider ,
47- #pragma warning disable IDE0060 // Remove unused parameter
48- Func < string , OmniSharpCodeActionOptions > optionsProvider ,
49- #pragma warning restore IDE0060 // Remove unused parameter
5041 CancellationToken cancellationToken )
5142 => new ( new FixAllState (
5243 fixAllProvider : NoOpFixAllProvider . Instance ,
0 commit comments