@@ -65,7 +65,6 @@ import { FileDownloader } from './net/fileDownloader';
65
65
import { HttpClient } from './net/httpClient' ;
66
66
import { NugetService } from './nuget/nugetService' ;
67
67
import { INugetService } from './nuget/types' ;
68
- import { PersistentStateFactory } from './persistentState' ;
69
68
import { IS_WINDOWS } from './platform/constants' ;
70
69
import { PathUtils } from './platform/pathUtils' ;
71
70
import { CurrentProcess } from './process/currentProcess' ;
@@ -105,7 +104,6 @@ import {
105
104
IFeatureDeprecationManager ,
106
105
IInstaller ,
107
106
IPathUtils ,
108
- IPersistentStateFactory ,
109
107
IRandom ,
110
108
IsWindows
111
109
} from './types' ;
@@ -120,7 +118,6 @@ export function registerTypes(serviceManager: IServiceManager) {
120
118
serviceManager . addSingleton < IInterpreterPathService > ( IInterpreterPathService , InterpreterPathService ) ;
121
119
serviceManager . addSingleton < IExtensions > ( IExtensions , Extensions ) ;
122
120
serviceManager . addSingleton < IRandom > ( IRandom , Random ) ;
123
- serviceManager . addSingleton < IPersistentStateFactory > ( IPersistentStateFactory , PersistentStateFactory ) ;
124
121
serviceManager . addSingleton < ITerminalServiceFactory > ( ITerminalServiceFactory , TerminalServiceFactory ) ;
125
122
serviceManager . addSingleton < IPathUtils > ( IPathUtils , PathUtils ) ;
126
123
serviceManager . addSingleton < IApplicationShell > ( IApplicationShell , ApplicationShell ) ;
0 commit comments