From 09000740015e2f50c71fc974398442cc48675711 Mon Sep 17 00:00:00 2001 From: James Sumners Date: Fri, 3 Jan 2025 12:24:58 -0500 Subject: [PATCH] remove silly self-assign --- lib/custom-events/custom-event-aggregator.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/lib/custom-events/custom-event-aggregator.js b/lib/custom-events/custom-event-aggregator.js index 04cf27192a..575220c67b 100644 --- a/lib/custom-events/custom-event-aggregator.js +++ b/lib/custom-events/custom-event-aggregator.js @@ -12,8 +12,6 @@ class CustomEventAggregator extends EventAggregator { constructor(opts, agent) { opts = opts || {} opts.method = opts.method || 'custom_event_data' - // eslint-disable-next-line no-self-assign - opts.metricNames = opts.metricNames super(opts, agent) }