diff options
author | Adam <Adam@anope.org> | 2012-09-07 22:27:28 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2012-09-07 22:27:28 -0400 |
commit | c9c477ff9d7e6f833fafac2ef058f82b89229f60 (patch) | |
tree | d587b9bb1d6ff4e3b7624375bb1ff26312e07791 /modules/commands/cs_set_secureops.cpp | |
parent | 4eb7db80a630df8f6e57e6e64662138f96c0c904 (diff) |
These saset command stubs can go away
Diffstat (limited to 'modules/commands/cs_set_secureops.cpp')
-rw-r--r-- | modules/commands/cs_set_secureops.cpp | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/modules/commands/cs_set_secureops.cpp b/modules/commands/cs_set_secureops.cpp index 760a73e6a..2ffca4b68 100644 --- a/modules/commands/cs_set_secureops.cpp +++ b/modules/commands/cs_set_secureops.cpp @@ -64,22 +64,13 @@ class CommandCSSetSecureOps : public Command } }; -class CommandCSSASetSecureOps : public CommandCSSetSecureOps -{ - public: - CommandCSSASetSecureOps(Module *creator) : CommandCSSetSecureOps(creator, "chanserv/saset/secureops") - { - } -}; - class CSSetSecureOps : public Module { CommandCSSetSecureOps commandcssetsecureops; - CommandCSSASetSecureOps commandcssasetsecureops; public: CSSetSecureOps(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, CORE), - commandcssetsecureops(this), commandcssasetsecureops(this) + commandcssetsecureops(this) { this->SetAuthor("Anope"); |