Remove getDefaultShellAndArgs from tasks

Fixes #123732
This commit is contained in:
Daniel Imms
2021-05-13 06:36:08 -07:00
parent da1df62ee5
commit 5d95c01ec1
6 changed files with 1 additions and 29 deletions

View File

@@ -702,9 +702,6 @@ export class MainThreadTask implements MainThreadTaskShape {
});
});
},
getDefaultShellAndArgs: (): Promise<{ shell: string, args: string[] | string | undefined }> => {
return Promise.resolve(this._proxy.$getDefaultShellAndArgs());
},
findExecutable: (command: string, cwd?: string, paths?: string[]): Promise<string | undefined> => {
return this._proxy.$findExecutable(command, cwd, paths);
}