Remove deprecated auth API proposals. Fixes #127144

This commit is contained in:
Tyler Leonhardt
2021-07-08 10:38:10 -07:00
parent a28d028d2d
commit ba01bbac9c
6 changed files with 0 additions and 89 deletions

View File

@@ -152,14 +152,6 @@ export class MainThreadAuthentication extends Disposable implements MainThreadAu
this._proxy.$onDidChangeAuthenticationSessions(e.providerId, e.label);
}));
this._register(this.authenticationService.onDidRegisterAuthenticationProvider(info => {
this._proxy.$onDidChangeAuthenticationProviders([info], []);
}));
this._register(this.authenticationService.onDidUnregisterAuthenticationProvider(info => {
this._proxy.$onDidChangeAuthenticationProviders([], [info]);
}));
this._proxy.$setProviders(this.authenticationService.declaredProviders);
this._register(this.authenticationService.onDidChangeDeclaredProviders(e => {