From 908819f9218b53770864cdb049a04f6c1ddb66a0 Mon Sep 17 00:00:00 2001 From: David Barbet Date: Tue, 14 May 2019 14:10:45 -0700 Subject: [PATCH] Fix code actions handler --- src/VisualStudio/LiveShare/Impl/RunCodeActionsHandler.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/VisualStudio/LiveShare/Impl/RunCodeActionsHandler.cs b/src/VisualStudio/LiveShare/Impl/RunCodeActionsHandler.cs index 01d7ec9131c..c9d06f2f683 100644 --- a/src/VisualStudio/LiveShare/Impl/RunCodeActionsHandler.cs +++ b/src/VisualStudio/LiveShare/Impl/RunCodeActionsHandler.cs @@ -29,6 +29,7 @@ internal class RunCodeActionsHandler : CodeActionsHandlerBase, ILspRequestHandle public RunCodeActionsHandler(ICodeFixService codeFixService, ICodeRefactoringService codeRefactoringService, IThreadingContext threadingContext) : base(codeFixService, codeRefactoringService) { + _threadingContext = threadingContext; } public async Task HandleAsync(LSP.ExecuteCommandParams request, RequestContext requestContext, CancellationToken cancellationToken) -- GitLab