@@ -10,7 +10,7 @@ import { Event } from 'vs/base/common/event';
1010import { ILogService } from 'vs/platform/log/common/log' ;
1111import { Disposable } from 'vs/base/common/lifecycle' ;
1212import { IStorageService , StorageScope } from 'vs/platform/storage/common/storage' ;
13- import { IWindowService , IEnterWorkspaceResult , IURIToOpen , IWindowsService , IOpenSettings , IWindowSettings } from 'vs/platform/windows/common/windows' ;
13+ import { IWindowService , IURIToOpen , IWindowsService , IOpenSettings , IWindowSettings } from 'vs/platform/windows/common/windows' ;
1414import { IWorkspaceIdentifier , ISingleFolderWorkspaceIdentifier } from 'vs/platform/workspaces/common/workspaces' ;
1515import { IRecentlyOpened , IRecent , isRecentFile , isRecentFolder } from 'vs/platform/history/common/history' ;
1616import { IWorkspaceContextService , WorkbenchState } from 'vs/platform/workspace/common/workspace' ;
@@ -88,10 +88,6 @@ export class SimpleWindowService extends Disposable implements IWindowService {
8888 return Promise . resolve ( false ) ;
8989 }
9090
91- enterWorkspace ( _path : URI ) : Promise < IEnterWorkspaceResult | undefined > {
92- return Promise . resolve ( undefined ) ;
93- }
94-
9591 async getRecentlyOpened ( ) : Promise < IRecentlyOpened > {
9692 const recentlyOpenedRaw = this . storageService . get ( SimpleWindowService . RECENTLY_OPENED_KEY , StorageScope . GLOBAL ) ;
9793 if ( recentlyOpenedRaw ) {
@@ -223,10 +219,6 @@ export class SimpleWindowsService implements IWindowsService {
223219 return Promise . resolve ( true ) ;
224220 }
225221
226- enterWorkspace ( _windowId : number , _path : URI ) : Promise < IEnterWorkspaceResult | undefined > {
227- return Promise . resolve ( undefined ) ;
228- }
229-
230222 addRecentlyOpened ( recents : IRecent [ ] ) : Promise < void > {
231223 return Promise . resolve ( ) ;
232224 }
0 commit comments