From dc4fb86e8b52efe9ce6f13396f2a00be1de99007 Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Thu, 7 Aug 2025 18:15:37 +0900 Subject: [PATCH] Remove outdated comment --- osu.Game/Graphics/Carousel/Carousel.cs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/osu.Game/Graphics/Carousel/Carousel.cs b/osu.Game/Graphics/Carousel/Carousel.cs index 17ade6df4b..c96afacd59 100644 --- a/osu.Game/Graphics/Carousel/Carousel.cs +++ b/osu.Game/Graphics/Carousel/Carousel.cs @@ -345,11 +345,6 @@ namespace osu.Game.Graphics.Carousel { log($"Performing {filter.GetType().ReadableName()}"); items = await filter.Run(items, cts.Token).ConfigureAwait(false); - - // To avoid shooting ourselves in the foot, ensure that we manifest a list after each filter. - // - // A future improvement may be passing a reference list through each filter rather than copying each time, - // but this is the safest approach. } log("Updating Y positions");