Update apiWrapper.ts (#7132)

remove the usage of workspace.rootPath, this is not being used.
This commit is contained in:
Alan Ren
2019-09-09 11:30:03 -07:00
committed by GitHub
parent 82f93f7da5
commit b1eef13bb0

View File

@@ -52,8 +52,4 @@ export class ApiWrapper {
public showErrorMessage(message: string, ...items: string[]): Thenable<string | undefined> {
return vscode.window.showErrorMessage(message, ...items);
}
public get workspaceRootPath(): string {
return vscode.workspace.rootPath;
}
}