Removed completed todos

This commit is contained in:
Kwoth
2022-07-18 04:46:01 +02:00
parent 8eca8e1dfb
commit 91da78a2ee
2 changed files with 0 additions and 33 deletions

View File

@@ -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

View File

@@ -13,7 +13,6 @@ public class CurrencyEventsService : INService
private readonly ConcurrentDictionary<ulong, ICurrencyEvent> _events = new(); private readonly ConcurrentDictionary<ulong, ICurrencyEvent> _events = new();
// todo fix xp freeze
public CurrencyEventsService(DiscordSocketClient client, ICurrencyService cs, GamblingConfigService configService) public CurrencyEventsService(DiscordSocketClient client, ICurrencyService cs, GamblingConfigService configService)
{ {
_client = client; _client = client;