Refactoring and fixed a few stylecop errors

This commit is contained in:
RogueException
2015-12-09 00:56:09 -04:00
parent a44e08bba1
commit 82746e9207
25 changed files with 574 additions and 505 deletions

View File

@@ -2,7 +2,7 @@
namespace Discord.Commands
{
public class CommandEventArgs
public class CommandEventArgs : EventArgs
{
private readonly string[] _args;

View File

@@ -7,7 +7,7 @@ using System.Threading.Tasks;
namespace Discord.Commands
{
/// <summary> A Discord.Net client with extensions for handling common bot operations like text commands. </summary>
public partial class CommandService : IService
public sealed partial class CommandService : IService
{
private const string DefaultPermissionError = "You do not have permission to access this command.";