@@ -13,14 +13,7 @@ import { IApplicationEnvironment, ICommandManager, IWorkspaceService } from './c
1313import { Commands , PYTHON_LANGUAGE , UseProposedApi } from './common/constants' ;
1414import { registerTypes as installerRegisterTypes } from './common/installer/serviceRegistry' ;
1515import { IFileSystem } from './common/platform/types' ;
16- import {
17- IConfigurationService ,
18- IDisposableRegistry ,
19- IExtensions ,
20- IInterpreterPathService ,
21- ILogOutputChannel ,
22- IPathUtils ,
23- } from './common/types' ;
16+ import { IConfigurationService , IDisposableRegistry , IExtensions , ILogOutputChannel , IPathUtils } from './common/types' ;
2417import { noop } from './common/utils/misc' ;
2518import { registerTypes as debugConfigurationRegisterTypes } from './debugger/extension/serviceRegistry' ;
2619import { IDebugConfigurationService } from './debugger/extension/types' ;
@@ -55,7 +48,6 @@ import { registerTriggerForTerminalREPL } from './terminals/codeExecution/termin
5548import { registerPythonStartup } from './terminals/pythonStartup' ;
5649import { registerPixiFeatures } from './pythonEnvironments/common/environmentManagers/pixi' ;
5750import { registerCustomTerminalLinkProvider } from './terminals/pythonStartupLinkProvider' ;
58- import { registerEnvExtFeatures } from './envExt/api.internal' ;
5951
6052export async function activateComponents (
6153 // `ext` is passed to any extra activation funcs.
@@ -95,13 +87,9 @@ export function activateFeatures(ext: ExtensionState, _components: Components):
9587 const interpreterQuickPick : IInterpreterQuickPick = ext . legacyIOC . serviceContainer . get < IInterpreterQuickPick > (
9688 IInterpreterQuickPick ,
9789 ) ;
98- const interpreterPathService : IInterpreterPathService = ext . legacyIOC . serviceContainer . get < IInterpreterPathService > (
99- IInterpreterPathService ,
100- ) ;
10190 const interpreterService : IInterpreterService = ext . legacyIOC . serviceContainer . get < IInterpreterService > (
10291 IInterpreterService ,
10392 ) ;
104- registerEnvExtFeatures ( ext . disposables , interpreterPathService ) ;
10593 const pathUtils = ext . legacyIOC . serviceContainer . get < IPathUtils > ( IPathUtils ) ;
10694 registerPixiFeatures ( ext . disposables ) ;
10795 registerAllCreateEnvironmentFeatures (
0 commit comments