From a51e64b2d14cfc14b9b868bb1a9ade9a6381092b Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Mon, 30 Oct 2017 19:16:16 +0900 Subject: [PATCH] Remove unnecessary schedule --- .../Overlays/Profile/Sections/Ranks/PaginatedScoreContainer.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/osu.Game/Overlays/Profile/Sections/Ranks/PaginatedScoreContainer.cs b/osu.Game/Overlays/Profile/Sections/Ranks/PaginatedScoreContainer.cs index a9fab64a74..75460dd9d7 100644 --- a/osu.Game/Overlays/Profile/Sections/Ranks/PaginatedScoreContainer.cs +++ b/osu.Game/Overlays/Profile/Sections/Ranks/PaginatedScoreContainer.cs @@ -131,7 +131,7 @@ namespace osu.Game.Overlays.Profile.Sections.Ranks } }; - Schedule(() => { api.Queue(req); }); + api.Queue(req); } } }