Skip to content

Commit 9f0d1d6

Browse files
Fix TypeScript compilation errors by removing unused imports and properties
Co-authored-by: TylerLeonhardt <2644648+TylerLeonhardt@users.noreply.github.com>
1 parent bc49678 commit 9f0d1d6

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

src/vs/workbench/contrib/authentication/browser/authentication.contribution.ts

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,15 @@
33
* Licensed under the MIT License. See License.txt in the project root for license information.
44
*--------------------------------------------------------------------------------------------*/
55

6-
import { Disposable, IDisposable } from '../../../../base/common/lifecycle.js';
6+
import { Disposable } from '../../../../base/common/lifecycle.js';
77
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';
99
import { CommandsRegistry } from '../../../../platform/commands/common/commands.js';
10-
import { ContextKeyExpr } from '../../../../platform/contextkey/common/contextkey.js';
1110
import { IExtensionManifest } from '../../../../platform/extensions/common/extensions.js';
1211
import { SyncDescriptor } from '../../../../platform/instantiation/common/descriptors.js';
1312
import { Registry } from '../../../../platform/registry/common/platform.js';
1413
import { IWorkbenchContribution, WorkbenchPhase, registerWorkbenchContribution2 } from '../../../common/contributions.js';
1514
import { SignOutOfAccountAction } from './actions/signOutOfAccountAction.js';
16-
import { IAuthenticationService } from '../../../services/authentication/common/authentication.js';
1715
import { IBrowserWorkbenchEnvironmentService } from '../../../services/environment/browser/environmentService.js';
1816
import { Extensions, IExtensionFeatureTableRenderer, IExtensionFeaturesRegistry, IRenderedData, IRowData, ITableData } from '../../../services/extensionManagement/common/extensionFeatures.js';
1917
import { ManageTrustedExtensionsForAccountAction } from './actions/manageTrustedExtensionsForAccountAction.js';
@@ -80,7 +78,7 @@ const extensionFeature = Registry.as<IExtensionFeaturesRegistry>(Extensions.Exte
8078
class AuthenticationContribution extends Disposable implements IWorkbenchContribution {
8179
static ID = 'workbench.contrib.authentication';
8280

83-
constructor(@IAuthenticationService private readonly _authenticationService: IAuthenticationService) {
81+
constructor() {
8482
super();
8583
this._register(codeExchangeProxyCommand);
8684
this._register(extensionFeature);

0 commit comments

Comments
 (0)