From ff9d7887e9f24fe99aa4fb03a9c91f82780be232 Mon Sep 17 00:00:00 2001 From: Gidi Meir Morris Date: Tue, 19 May 2020 09:33:21 +0100 Subject: [PATCH] removed unused field --- x-pack/plugins/alerting/server/plugin.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/x-pack/plugins/alerting/server/plugin.ts b/x-pack/plugins/alerting/server/plugin.ts index 47463f4891831..f0eda0d3fb662 100644 --- a/x-pack/plugins/alerting/server/plugin.ts +++ b/x-pack/plugins/alerting/server/plugin.ts @@ -105,7 +105,6 @@ export class AlertingPlugin { private readonly telemetryLogger: Logger; private readonly kibanaIndex: Promise; private eventLogger?: IEventLogger; - private encryptedSavedObjects?: EncryptedSavedObjectsPluginSetup; constructor(initializerContext: PluginInitializerContext) { this.logger = initializerContext.logger.get('plugins', 'alerting'); @@ -127,7 +126,6 @@ export class AlertingPlugin { this.licenseState = new LicenseState(plugins.licensing.license$); this.spaces = plugins.spaces?.spacesService; this.security = plugins.security; - this.encryptedSavedObjects = plugins.encryptedSavedObjects; this.isESOUsingEphemeralEncryptionKey = plugins.encryptedSavedObjects.usingEphemeralEncryptionKey;