UI Server: Improve error handling
[e-mobility-charging-stations-simulator.git] / src / performance / PerformanceStatistics.ts
index 6a5b454f9c5d868f74ad3bc62c606324adfebe9e..6513bba5e98ade3a08b00f8e3fb41680c5a66296 100644 (file)
@@ -222,12 +222,7 @@ export default class PerformanceStatistics {
   }
 
   private addPerformanceEntryToStatistics(entry: PerformanceEntry): void {
-    let entryName = entry.name;
-    // Rename entry name
-    const MAP_NAME: Record<string, string> = {};
-    if (MAP_NAME[entryName]) {
-      entryName = MAP_NAME[entryName];
-    }
+    const entryName = entry.name;
     // Initialize command statistics
     if (!this.statistics.statisticsData.has(entryName)) {
       this.statistics.statisticsData.set(entryName, {});