Just kidding, keep proposed onDidChangeAuthenticationProviders API for now

This commit is contained in:
Rachel Macfarlane
2021-01-04 17:01:05 -08:00
parent 942c3bad6b
commit 4d8895c7b7
3 changed files with 6 additions and 16 deletions

View File

@@ -43,14 +43,6 @@ export class ExtHostAuthentication implements ExtHostAuthenticationShape {
return Promise.resolve();
}
getProviderIds(): Promise<ReadonlyArray<string>> {
return this._proxy.$getProviderIds();
}
get providerIds(): string[] {
return this._providerIds;
}
get providers(): ReadonlyArray<vscode.AuthenticationProviderInformation> {
return Object.freeze(this._providers.slice());
}