remove FileSystemProvider#root

This commit is contained in:
Johannes Rieken
2018-03-20 12:11:15 +01:00
parent 8e9d169c9a
commit 05abb6374e
2 changed files with 0 additions and 7 deletions

View File

@@ -73,10 +73,6 @@ export class ExtHostFileSystem implements ExtHostFileSystemShape {
this._linkProvider.add(scheme);
this._provider.set(handle, provider);
this._proxy.$registerFileSystemProvider(handle, scheme);
if (provider.root) {
// todo@remote
this._proxy.$onDidAddFileSystemRoot(provider.root);
}
let reg: IDisposable;
if (provider.onDidChange) {
reg = provider.onDidChange(event => this._proxy.$onFileSystemChange(handle, <any>event));