From 7d193459a169ededc5d239d8818be6b251a925eb Mon Sep 17 00:00:00 2001 From: Thomas Neirynck Date: Wed, 12 Mar 2025 10:25:36 -0400 Subject: [PATCH] [Chore] Remove unused module (#214018) Remove unused module. I noticed this doing some investigations, and thought to tidy this up. Check the PR satisfies following conditions. Reviewers should verify this PR satisfies this list as well. - [x] Any text added follows [EUI's writing guidelines](https://elastic.github.io/eui/#/guidelines/writing), uses sentence case text and includes [i18n support](https://github.com/elastic/kibana/blob/main/src/platform/packages/shared/kbn-i18n/README.md) - [x] [Documentation](https://www.elastic.co/guide/en/kibana/master/development-documentation.html) was added for features that require explanation or tutorials - [x] [Unit or functional tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html) were updated or added to match the most common scenarios - [x] If a plugin configuration key changed, check if it needs to be allowlisted in the cloud and added to the [docker list](https://github.com/elastic/kibana/blob/main/src/dev/build/tasks/os_packages/docker_generator/resources/base/bin/kibana-docker) - [x] This was checked for breaking HTTP API changes, and any breaking changes have been approved by the breaking-change committee. The `release_note:breaking` label should be applied in these situations. - [x] [Flaky Test Runner](https://ci-stats.kibana.dev/trigger_flaky_test_runner/1) was used on any tests changed - [x] The PR description includes the appropriate Release Notes section, and the correct `release_note:*` label is applied per the [guidelines](https://www.elastic.co/guide/en/kibana/master/contributing.html#kibana-release-notes-process) (cherry picked from commit bac2f0c6bdf386ce9bdced2f95f2ab4bcf67f1ce) --- src/plugins/kibana_utils/public/index.ts | 1 - src/plugins/kibana_utils/public/render_complete/index.ts | 1 - 2 files changed, 2 deletions(-) diff --git a/src/plugins/kibana_utils/public/index.ts b/src/plugins/kibana_utils/public/index.ts index 3f1205017679b..34b48dbe5cee1 100644 --- a/src/plugins/kibana_utils/public/index.ts +++ b/src/plugins/kibana_utils/public/index.ts @@ -35,7 +35,6 @@ export { DuplicateField, } from '../common/errors'; export { - RenderCompleteListener, RenderCompleteDispatcher, dispatchRenderComplete, dispatchRenderStart, diff --git a/src/plugins/kibana_utils/public/render_complete/index.ts b/src/plugins/kibana_utils/public/render_complete/index.ts index 4d5ff6ce03912..5199d10348231 100644 --- a/src/plugins/kibana_utils/public/render_complete/index.ts +++ b/src/plugins/kibana_utils/public/render_complete/index.ts @@ -7,7 +7,6 @@ * License v3.0 only", or the "Server Side Public License, v 1". */ -export { RenderCompleteListener } from './render_complete_listener'; export { dispatchRenderStart, dispatchRenderComplete,