api - remove add/removeWorkspaceFolder (for #37301)

This commit is contained in:
Benjamin Pasero
2017-11-01 15:02:57 +01:00
parent bab6929b45
commit 67ae810e04
6 changed files with 2 additions and 106 deletions

View File

@@ -331,8 +331,6 @@ export interface MainThreadWorkspaceShape extends IDisposable {
$startSearch(include: string | IRelativePattern, exclude: string | IRelativePattern, maxResults: number, requestId: number): Thenable<URI[]>;
$cancelSearch(requestId: number): Thenable<boolean>;
$saveAll(includeUntitled?: boolean): Thenable<boolean>;
$addFolder(extensioName: string, uri: URI, name?: string): Thenable<boolean>;
$removeFolder(extensioName: string, uri: URI): Thenable<boolean>;
}
export interface MainThreadFileSystemShape extends IDisposable {