From 7217881314993fd43828a6cda3f9fb8c15ea8a1c Mon Sep 17 00:00:00 2001 From: Joe4evr Date: Tue, 8 Nov 2016 14:08:32 +0100 Subject: [PATCH] Fix namespaces --- src/Discord.Net.Commands/Attributes/TypeReaderAttribute.cs | 2 +- src/Discord.Net.Commands/CommandInfo.cs | 1 - src/Discord.Net.Commands/ModuleInfo.cs | 1 - 3 files changed, 1 insertion(+), 3 deletions(-) diff --git a/src/Discord.Net.Commands/Attributes/TypeReaderAttribute.cs b/src/Discord.Net.Commands/Attributes/TypeReaderAttribute.cs index f4a69e653..33169f25c 100644 --- a/src/Discord.Net.Commands/Attributes/TypeReaderAttribute.cs +++ b/src/Discord.Net.Commands/Attributes/TypeReaderAttribute.cs @@ -1,7 +1,7 @@ using System; using System.Reflection; -namespace Discord.Commands.Attributes +namespace Discord.Commands { [AttributeUsage(AttributeTargets.Class | AttributeTargets.Parameter, AllowMultiple = true)] public class TypeReaderAttribute : Attribute diff --git a/src/Discord.Net.Commands/CommandInfo.cs b/src/Discord.Net.Commands/CommandInfo.cs index b36758891..0cf4f3e3f 100644 --- a/src/Discord.Net.Commands/CommandInfo.cs +++ b/src/Discord.Net.Commands/CommandInfo.cs @@ -6,7 +6,6 @@ using System.Diagnostics; using System.Linq; using System.Reflection; using System.Threading.Tasks; -using Discord.Commands.Attributes; namespace Discord.Commands { diff --git a/src/Discord.Net.Commands/ModuleInfo.cs b/src/Discord.Net.Commands/ModuleInfo.cs index bf8e20924..7fed9a8ec 100644 --- a/src/Discord.Net.Commands/ModuleInfo.cs +++ b/src/Discord.Net.Commands/ModuleInfo.cs @@ -3,7 +3,6 @@ using System.Collections.Generic; using System.Collections.Immutable; using System.Diagnostics; using System.Reflection; -using Discord.Commands.Attributes; namespace Discord.Commands {