File tree 1 file changed +2
-4
lines changed
1 file changed +2
-4
lines changed Original file line number Diff line number Diff line change @@ -165,7 +165,7 @@ export function activate(context: ExtensionContext): Promise<ExtensionAPI> {
165
165
initializationOptions : {
166
166
bundles : collectJavaExtensions ( extensions . all ) ,
167
167
workspaceFolders : workspace . workspaceFolders ? workspace . workspaceFolders . map ( f => f . uri . toString ( ) ) : null ,
168
- settings : { java : getJavaConfig ( requirements . java_home ) } ,
168
+ settings : getJavaConfig ( requirements . java_home ) ,
169
169
extendedClientCapabilities : {
170
170
progressReportProvider : getJavaConfiguration ( ) . get ( 'progressReports.enabled' ) ,
171
171
classFileContentsSupport : true ,
@@ -192,9 +192,7 @@ export function activate(context: ExtensionContext): Promise<ExtensionAPI> {
192
192
workspace : {
193
193
didChangeConfiguration : ( ) => {
194
194
standardClient . getClient ( ) . sendNotification ( DidChangeConfigurationNotification . type , {
195
- settings : {
196
- java : getJavaConfig ( requirements . java_home ) ,
197
- }
195
+ settings : getJavaConfig ( requirements . java_home )
198
196
} ) ;
199
197
}
200
198
}
You can’t perform that action at this time.
0 commit comments