From 8530c4b168863974eefe719a9021742c79d02689 Mon Sep 17 00:00:00 2001 From: "Alex 'Braker' R." Date: Sat, 5 Oct 2024 11:26:23 +0200 Subject: [PATCH] Remove unused constructor parameter --- src/Modules/ScoreboardModule/Services/ScoreboardService.cs | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/Modules/ScoreboardModule/Services/ScoreboardService.cs b/src/Modules/ScoreboardModule/Services/ScoreboardService.cs index 1f1728cb..bae50ef0 100644 --- a/src/Modules/ScoreboardModule/Services/ScoreboardService.cs +++ b/src/Modules/ScoreboardModule/Services/ScoreboardService.cs @@ -1,5 +1,4 @@ using EvoSC.Common.Interfaces; -using EvoSC.Common.Interfaces.Themes; using EvoSC.Common.Services.Attributes; using EvoSC.Common.Services.Models; using EvoSC.Manialinks.Interfaces; @@ -15,7 +14,6 @@ public class ScoreboardService( IManialinkManager manialinks, IServerClient server, IScoreboardNicknamesService nicknamesService, - IThemeManager themes, IScoreboardSettings settings, IGameModeUiModuleService gameModeUiModuleService )