Remove authentication provider package.json declaration

This commit is contained in:
Rachel Macfarlane
2021-03-01 13:50:51 -08:00
parent 8e37e4722e
commit 811dc8d45a
7 changed files with 2 additions and 102 deletions

View File

@@ -136,12 +136,6 @@ export class MainThreadAuthentication extends Disposable implements MainThreadAu
this._register(this.authenticationService.onDidUnregisterAuthenticationProvider(info => {
this._proxy.$onDidChangeAuthenticationProviders([], [info]);
}));
this._proxy.$setProviders(this.authenticationService.declaredProviders);
this._register(this.authenticationService.onDidChangeDeclaredProviders(e => {
this._proxy.$setProviders(e);
}));
}
async $registerAuthenticationProvider(id: string, label: string, supportsMultipleAccounts: boolean): Promise<void> {