Browse Source

Removed some unused usings.

tags/docs-0.9
RogueException 9 years ago
parent
commit
b5e23a0b7a
2 changed files with 1 additions and 3 deletions
  1. +0
    -1
      src/Discord.Net/DiscordClient.Channels.cs
  2. +1
    -2
      src/Discord.Net/DiscordClient.Servers.cs

+ 0
- 1
src/Discord.Net/DiscordClient.Channels.cs View File

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


+ 1
- 2
src/Discord.Net/DiscordClient.Servers.cs 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


Loading…
Cancel
Save