Reverted an obsolete change.

Signed-off-by: Akos Kitta <kittaakos@typefox.io>
This commit is contained in:
Akos Kitta 2019-05-08 17:08:18 +02:00 committed by Christian Weichel
parent f0eb5a85b8
commit 7c3d830ea2

View File

@ -1,5 +1,4 @@
import { inject, injectable } from 'inversify';
import { FileSystem } from '@theia/filesystem/lib/common';
import { WorkspaceService } from '@theia/workspace/lib/browser/workspace-service';
import { WorkspaceServiceExt } from './workspace-service-ext';
@ -9,9 +8,6 @@ import { WorkspaceServiceExt } from './workspace-service-ext';
@injectable()
export class WorkspaceServiceExtImpl implements WorkspaceServiceExt {
@inject(FileSystem)
protected readonly fileSystem: FileSystem;
@inject(WorkspaceService)
protected readonly delegate: WorkspaceService;
@ -20,4 +16,4 @@ export class WorkspaceServiceExtImpl implements WorkspaceServiceExt {
return stats.map(stat => stat.uri);
}
}
}