File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -167,7 +167,8 @@ export function activate(context: ExtensionContext): Promise<ExtensionAPI> {
167
167
resolveAdditionalTextEditsSupport : true ,
168
168
advancedIntroduceParameterRefactoringSupport : true ,
169
169
actionableRuntimeNotificationSupport : true ,
170
- shouldLanguageServerExitOnShutdown : true ,
170
+ // https://github.com/redhat-developer/vscode-java/pull/2377#issuecomment-1427268344
171
+ shouldLanguageServerExitOnShutdown : false ,
171
172
onCompletionItemSelectedCommand : "editor.action.triggerParameterHints" ,
172
173
extractInterfaceSupport : true ,
173
174
} ,
Original file line number Diff line number Diff line change @@ -99,10 +99,10 @@ function createDocumentSymbolProvider(): DocumentSymbolProvider {
99
99
}
100
100
101
101
if ( ( < any > symbolResponse [ 0 ] ) . containerName ) {
102
- return await languageClient . protocol2CodeConverter . asSymbolInformations ( < clientSymbolInformation [ ] > symbolResponse ) ;
102
+ return languageClient . protocol2CodeConverter . asSymbolInformations ( < clientSymbolInformation [ ] > symbolResponse ) ;
103
103
}
104
104
105
- return await languageClient . protocol2CodeConverter . asDocumentSymbols ( < clientDocumentSymbol [ ] > symbolResponse ) ;
105
+ return languageClient . protocol2CodeConverter . asDocumentSymbols ( < clientDocumentSymbol [ ] > symbolResponse ) ;
106
106
}
107
107
} ;
108
108
}
You can’t perform that action at this time.
0 commit comments