|
3 | 3 | * Licensed under the MIT License. See License.txt in the project root for license information.
|
4 | 4 | *--------------------------------------------------------------------------------------------*/
|
5 | 5 |
|
6 |
| -import { Disposable, IDisposable } from '../../../../base/common/lifecycle.js'; |
| 6 | +import { Disposable } from '../../../../base/common/lifecycle.js'; |
7 | 7 | import { localize } from '../../../../nls.js';
|
8 |
| -import { MenuId, MenuRegistry, registerAction2 } from '../../../../platform/actions/common/actions.js'; |
| 8 | +import { registerAction2 } from '../../../../platform/actions/common/actions.js'; |
9 | 9 | import { CommandsRegistry } from '../../../../platform/commands/common/commands.js';
|
10 |
| -import { ContextKeyExpr } from '../../../../platform/contextkey/common/contextkey.js'; |
11 | 10 | import { IExtensionManifest } from '../../../../platform/extensions/common/extensions.js';
|
12 | 11 | import { SyncDescriptor } from '../../../../platform/instantiation/common/descriptors.js';
|
13 | 12 | import { Registry } from '../../../../platform/registry/common/platform.js';
|
14 | 13 | import { IWorkbenchContribution, WorkbenchPhase, registerWorkbenchContribution2 } from '../../../common/contributions.js';
|
15 | 14 | import { SignOutOfAccountAction } from './actions/signOutOfAccountAction.js';
|
16 |
| -import { IAuthenticationService } from '../../../services/authentication/common/authentication.js'; |
17 | 15 | import { IBrowserWorkbenchEnvironmentService } from '../../../services/environment/browser/environmentService.js';
|
18 | 16 | import { Extensions, IExtensionFeatureTableRenderer, IExtensionFeaturesRegistry, IRenderedData, IRowData, ITableData } from '../../../services/extensionManagement/common/extensionFeatures.js';
|
19 | 17 | import { ManageTrustedExtensionsForAccountAction } from './actions/manageTrustedExtensionsForAccountAction.js';
|
@@ -80,7 +78,7 @@ const extensionFeature = Registry.as<IExtensionFeaturesRegistry>(Extensions.Exte
|
80 | 78 | class AuthenticationContribution extends Disposable implements IWorkbenchContribution {
|
81 | 79 | static ID = 'workbench.contrib.authentication';
|
82 | 80 |
|
83 |
| - constructor(@IAuthenticationService private readonly _authenticationService: IAuthenticationService) { |
| 81 | + constructor() { |
84 | 82 | super();
|
85 | 83 | this._register(codeExchangeProxyCommand);
|
86 | 84 | this._register(extensionFeature);
|
|
0 commit comments