diff --git a/src/vs/workbench/parts/update/electron-browser/releaseNotesEditor.ts b/src/vs/workbench/parts/update/electron-browser/releaseNotesEditor.ts index 52abc7a5262..cfe22f0a444 100644 --- a/src/vs/workbench/parts/update/electron-browser/releaseNotesEditor.ts +++ b/src/vs/workbench/parts/update/electron-browser/releaseNotesEditor.ts @@ -57,13 +57,13 @@ export class ReleaseNotesEditor extends WebviewEditor { constructor( @ITelemetryService telemetryService: ITelemetryService, - @IThemeService protected themeService: IThemeService, @IStorageService storageService: IStorageService, @IContextKeyService contextKeyService: IContextKeyService, - @IEnvironmentService private environmentService: IEnvironmentService, - @IOpenerService private openerService: IOpenerService, - @IModeService private modeService: IModeService, - @IPartService private partService: IPartService, + @IThemeService protected readonly themeService: IThemeService, + @IEnvironmentService private readonly environmentService: IEnvironmentService, + @IOpenerService private readonly openerService: IOpenerService, + @IModeService private readonly modeService: IModeService, + @IPartService private readonly partService: IPartService, @IContextViewService private readonly _contextViewService: IContextViewService, @IWorkspaceContextService private readonly _contextService: IWorkspaceContextService ) {