Removed some unused usings.

This commit is contained in:
RogueException
2015-10-22 04:00:12 -03:00
parent fb1c5b8e86
commit b5e23a0b7a
2 changed files with 1 additions and 3 deletions

View File

@@ -1,4 +1,3 @@
using Discord.Net;
using System;
using System.Collections.Generic;
using System.Linq;

View File

@@ -1,4 +1,3 @@
using Discord.Net;
using System;
using System.Collections.Generic;
using System.Linq;
@@ -13,7 +12,7 @@ namespace Discord
: base(client, writerLock, x => x.OnCached(), x => x.OnUncached()) { }
public Server GetOrAdd(string id)
=> base.GetOrAdd(id, () => new Server(_client, id));
=> GetOrAdd(id, () => new Server(_client, id));
}
public class ServerEventArgs : EventArgs