2
2
// Licensed under the MIT License.
3
3
4
4
import { inject , injectable } from 'inversify' ;
5
- import { DocumentFilter , languages , OutputChannel } from 'vscode' ;
6
- import { PYTHON , STANDARD_OUTPUT_CHANNEL } from '../common/constants' ;
7
- import { IConfigurationService , IExtensionContext , ILogger , IOutputChannel } from '../common/types' ;
5
+ import { DocumentFilter , languages } from 'vscode' ;
6
+ import { PYTHON } from '../common/constants' ;
7
+ import { IConfigurationService , IExtensionContext , ILogger } from '../common/types' ;
8
8
import { IShebangCodeLensProvider } from '../interpreter/contracts' ;
9
9
import { IServiceManager } from '../ioc/types' ;
10
10
import { JediFactory } from '../languageServices/jediProxyFactory' ;
@@ -15,7 +15,6 @@ import { activateGoToObjectDefinitionProvider } from '../providers/objectDefinit
15
15
import { PythonReferenceProvider } from '../providers/referenceProvider' ;
16
16
import { PythonRenameProvider } from '../providers/renameProvider' ;
17
17
import { PythonSignatureProvider } from '../providers/signatureProvider' ;
18
- import { activateSimplePythonRefactorProvider } from '../providers/simpleRefactorProvider' ;
19
18
import { PythonSymbolProvider } from '../providers/symbolProvider' ;
20
19
import { IUnitTestManagementService } from '../unittests/types' ;
21
20
import { IExtensionActivator } from './types' ;
@@ -32,8 +31,6 @@ export class ClassicExtensionActivator implements IExtensionActivator {
32
31
33
32
public async activate ( ) : Promise < boolean > {
34
33
const context = this . context ;
35
- const standardOutputChannel = this . serviceManager . get < OutputChannel > ( IOutputChannel , STANDARD_OUTPUT_CHANNEL ) ;
36
- activateSimplePythonRefactorProvider ( context , standardOutputChannel , this . serviceManager ) ;
37
34
38
35
const jediFactory = this . jediFactory = new JediFactory ( context . asAbsolutePath ( '.' ) , this . serviceManager ) ;
39
36
context . subscriptions . push ( jediFactory ) ;
0 commit comments