From d317347a9b4c50283ad0dafd55f82b35eade0538 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Mon, 8 May 2023 16:35:30 +0100 Subject: [PATCH] WorldTimings: remove TODO I tried this, and it didn't really provide any information that the tree table didn't already show. --- src/world/WorldTimings.php | 1 - 1 file changed, 1 deletion(-) diff --git a/src/world/WorldTimings.php b/src/world/WorldTimings.php index 97ab70709..5c1a56011 100644 --- a/src/world/WorldTimings.php +++ b/src/world/WorldTimings.php @@ -65,7 +65,6 @@ class WorldTimings{ private static function newTimer(string $worldName, string $timerName) : TimingsHandler{ $aggregator = self::$aggregators[$timerName] ??= new TimingsHandler("Worlds - $timerName"); //displayed in Minecraft primary table - //TODO: maybe a dedicated group per world would be better? return new TimingsHandler("$worldName - $timerName", $aggregator, Timings::GROUP_BREAKDOWN); }