diff --git a/web/assets/js/util/index.js b/web/assets/js/util/index.js index 93416abe..8178e5ab 100644 --- a/web/assets/js/util/index.js +++ b/web/assets/js/util/index.js @@ -558,10 +558,6 @@ class CPUFormatter { static cpuSpeedFormat(speed) { return speed > 1000 ? (speed / 1000).toFixed(2) + " GHz" : speed.toFixed(2) + " MHz"; } - - static cpuCoreFormat(cores) { - return cores === 1 ? "1 Core" : cores + " Cores"; - } } class TimeFormatter { diff --git a/web/html/index.html b/web/html/index.html index 76c8642f..07e957f7 100644 --- a/web/html/index.html +++ b/web/html/index.html @@ -95,7 +95,7 @@