@@ -9,13 +9,10 @@ import { FileSystem } from '../common/platform/fileSystem';
9
9
import { PlatformService } from '../common/platform/platformService' ;
10
10
import { IFileSystem , IPlatformService } from '../common/platform/types' ;
11
11
import { CurrentProcess } from '../common/process/currentProcess' ;
12
- import { BANNER_NAME_LS_SURVEY , BANNER_NAME_PROPOSE_LS , ICurrentProcess ,
13
- IExperimentalDebuggerBanner , IPythonExtensionBanner , ISocketServer } from '../common/types' ;
12
+ import { ICurrentProcess , IExperimentalDebuggerBanner , ISocketServer } from '../common/types' ;
14
13
import { ServiceContainer } from '../ioc/container' ;
15
14
import { ServiceManager } from '../ioc/serviceManager' ;
16
15
import { IServiceContainer , IServiceManager } from '../ioc/types' ;
17
- import { LanguageServerSurveyBanner } from '../languageServices/languageServerSurveyBanner' ;
18
- import { ProposeLanguageServerBanner } from '../languageServices/proposeLanguageServerBanner' ;
19
16
import { ExperimentalDebuggerBanner } from './banner' ;
20
17
import { DebugStreamProvider } from './Common/debugStreamProvider' ;
21
18
import { ProtocolLogger } from './Common/protocolLogger' ;
@@ -45,6 +42,4 @@ function registerDebuggerTypes(serviceManager: IServiceManager) {
45
42
46
43
export function registerTypes ( serviceManager : IServiceManager ) {
47
44
serviceManager . addSingleton < IExperimentalDebuggerBanner > ( IExperimentalDebuggerBanner , ExperimentalDebuggerBanner ) ;
48
- serviceManager . addSingleton < IPythonExtensionBanner > ( IPythonExtensionBanner , LanguageServerSurveyBanner , BANNER_NAME_LS_SURVEY ) ;
49
- serviceManager . addSingleton < IPythonExtensionBanner > ( IPythonExtensionBanner , ProposeLanguageServerBanner , BANNER_NAME_PROPOSE_LS ) ;
50
45
}
0 commit comments