From 91da78a2ee4a3825f40fa2ffbed469c020048554 Mon Sep 17 00:00:00 2001 From: Kwoth Date: Mon, 18 Jul 2022 04:46:01 +0200 Subject: [PATCH] Removed completed todos --- .../Attributes/NadekoModuleAttribute.cs | 32 ------------------- .../Gambling/Events/CurrencyEventsService.cs | 1 - 2 files changed, 33 deletions(-) delete mode 100644 src/NadekoBot/Common/Attributes/NadekoModuleAttribute.cs diff --git a/src/NadekoBot/Common/Attributes/NadekoModuleAttribute.cs b/src/NadekoBot/Common/Attributes/NadekoModuleAttribute.cs deleted file mode 100644 index 3c80d2d32..000000000 --- a/src/NadekoBot/Common/Attributes/NadekoModuleAttribute.cs +++ /dev/null @@ -1,32 +0,0 @@ -// using System.Runtime.CompilerServices; -// -// namespace NadekoBot.Common.Attributes; -// -// [AttributeUsage(AttributeTargets.Class)] -// internal sealed class NadekoModuleAttribute : GroupAttribute -// { -// public NadekoModuleAttribute(string moduleName) -// : base(moduleName) -// { -// } -// } -// -// [AttributeUsage(AttributeTargets.Method)] -// internal sealed class NadekoDescriptionAttribute : SummaryAttribute -// { -// public NadekoDescriptionAttribute([CallerMemberName] string name = "") -// : base(name.ToLowerInvariant()) -// { -// } -// } -// -// [AttributeUsage(AttributeTargets.Method)] -// internal sealed class NadekoUsageAttribute : RemarksAttribute -// { -// public NadekoUsageAttribute([CallerMemberName] string name = "") -// : base(name.ToLowerInvariant()) -// { -// } -// } - -// todo remove these \ No newline at end of file diff --git a/src/NadekoBot/Modules/Gambling/Events/CurrencyEventsService.cs b/src/NadekoBot/Modules/Gambling/Events/CurrencyEventsService.cs index d30ae9cb8..fe840b498 100644 --- a/src/NadekoBot/Modules/Gambling/Events/CurrencyEventsService.cs +++ b/src/NadekoBot/Modules/Gambling/Events/CurrencyEventsService.cs @@ -13,7 +13,6 @@ public class CurrencyEventsService : INService private readonly ConcurrentDictionary _events = new(); -// todo fix xp freeze public CurrencyEventsService(DiscordSocketClient client, ICurrencyService cs, GamblingConfigService configService) { _client = client;