From e7f26073b446db4de03d51adeea4999f29e2dc13 Mon Sep 17 00:00:00 2001 From: Henrik <15855905+high3eam@users.noreply.github.com> Date: Mon, 28 Jul 2025 08:12:36 +0200 Subject: [PATCH] Remove legacy code (remove tddBandwidths, fixes #2) --- custom.js | 2 -- 1 file changed, 2 deletions(-) diff --git a/custom.js b/custom.js index c2b66b7..1f44a4c 100644 --- a/custom.js +++ b/custom.js @@ -560,7 +560,6 @@ let totalTddBandwidth = 0; let totalVirtualBands = 0; let hasTddBand = false; - let tddBandwidths = []; nrcaItem.components.forEach(checkMmwaveBandwidth); @@ -582,7 +581,6 @@ hasTddBand = true; const bandwidth = calculateBandwidth(component); totalTddBandwidth += bandwidth; - tddBandwidths.push(bandwidth); totalVirtualBands += calculateVirtualBands(component); } else if (nrFddBands.has(component.band)) { hasFddBand = true;