@@ -63,7 +63,6 @@ import { ConfigurationScope, Extensions, IConfigurationRegistry } from 'vs/platf
63
63
import { Registry } from 'vs/platform/registry/common/platform' ;
64
64
import { defaultButtonStyles } from 'vs/platform/theme/browser/defaultStyles' ;
65
65
import { IProductService } from 'vs/platform/product/common/productService' ;
66
- import { IEnvironmentService } from 'vs/platform/environment/common/environment' ;
67
66
import { registerNavigableContainer } from 'vs/workbench/browser/actions/widgetNavigationCommands' ;
68
67
import { IEditorProgressService } from 'vs/platform/progress/common/progress' ;
69
68
@@ -237,7 +236,6 @@ export class SettingsEditor2 extends EditorPane {
237
236
@ILanguageService private readonly languageService : ILanguageService ,
238
237
@IExtensionManagementService extensionManagementService : IExtensionManagementService ,
239
238
@IProductService private readonly productService : IProductService ,
240
- @IEnvironmentService private readonly environmentService : IEnvironmentService ,
241
239
@IExtensionGalleryService private readonly extensionGalleryService : IExtensionGalleryService ,
242
240
@IEditorProgressService private readonly editorProgressService : IEditorProgressService ,
243
241
) {
@@ -1289,7 +1287,7 @@ export class SettingsEditor2 extends EditorPane {
1289
1287
}
1290
1288
1291
1289
const additionalGroups : ISettingsGroup [ ] = [ ] ;
1292
- const toggleData = await getExperimentalExtensionToggleData ( this . extensionGalleryService , this . environmentService , this . productService ) ;
1290
+ const toggleData = await getExperimentalExtensionToggleData ( this . extensionGalleryService , this . productService ) ;
1293
1291
if ( toggleData && groups . filter ( g => g . extensionInfo ) . length ) {
1294
1292
for ( const key in toggleData . settingsEditorRecommendedExtensions ) {
1295
1293
const extension = toggleData . recommendedExtensionsGalleryInfo [ key ] ;
0 commit comments