From 9a2425f316903a8725da40f6d0374afa91aebe8c Mon Sep 17 00:00:00 2001 From: Dean Herbert Date: Mon, 8 Nov 2021 21:36:28 +0900 Subject: [PATCH] Remove unused field for now to appease inspectcode --- osu.Game/Beatmaps/Drawables/Cards/Buttons/DownloadButton.cs | 4 ---- 1 file changed, 4 deletions(-) diff --git a/osu.Game/Beatmaps/Drawables/Cards/Buttons/DownloadButton.cs b/osu.Game/Beatmaps/Drawables/Cards/Buttons/DownloadButton.cs index da6fe3c8be98..00c0ccc3ce83 100644 --- a/osu.Game/Beatmaps/Drawables/Cards/Buttons/DownloadButton.cs +++ b/osu.Game/Beatmaps/Drawables/Cards/Buttons/DownloadButton.cs @@ -8,12 +8,8 @@ namespace osu.Game.Beatmaps.Drawables.Cards.Buttons { public class DownloadButton : BeatmapCardIconButton { - private readonly APIBeatmapSet beatmapSet; - public DownloadButton(APIBeatmapSet beatmapSet) { - this.beatmapSet = beatmapSet; - Icon.Icon = FontAwesome.Solid.FileDownload; }