Remove tarball proxy command from web bundle (#173049)

This commit is contained in:
Joyce Er 2023-02-02 10:40:31 -08:00 committed by GitHub
parent cdbdfdd08a
commit 55d4e4844f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 8 deletions

View file

@ -173,12 +173,6 @@ export interface IWorkbenchConstructionOptions {
*/
readonly editSessionId?: string;
/**
* [TEMPORARY]: This will be removed soon.
* Endpoints to be used for proxying repository tarball download calls in the browser.
*/
readonly _tarballProxyEndpoints?: { [providerId: string]: string };
//#endregion

View file

@ -56,8 +56,6 @@ export function create(domElement: HTMLElement, options: IWorkbenchConstructionO
}
}
CommandsRegistry.registerCommand('_workbench.getTarballProxyEndpoints', () => (options._tarballProxyEndpoints ?? {}));
// Startup workbench and resolve waiters
let instantiatedWorkbench: IWorkbench | undefined = undefined;
new BrowserMain(domElement, options).open().then(workbench => {