diff options
-rw-r--r-- | include/modules.h | 10 | ||||
-rw-r--r-- | src/modules.cpp | 8 |
2 files changed, 0 insertions, 18 deletions
diff --git a/include/modules.h b/include/modules.h index 0fdde6016..7caf2d936 100644 --- a/include/modules.h +++ b/include/modules.h @@ -1262,16 +1262,6 @@ class Module : public Extensible class Server : public Extensible { public: - /** Default constructor. - * Creates a Server object. - */ - Server(); - - /** Default destructor. - * Destroys a Server object. - */ - virtual ~Server(); - /** For use with Module::Prioritize(). * When the return value of this function is returned from * Module::Prioritize(), this specifies that the module wishes diff --git a/src/modules.cpp b/src/modules.cpp index d5ddc3bb0..824da10f3 100644 --- a/src/modules.cpp +++ b/src/modules.cpp @@ -233,14 +233,6 @@ void Module::OnCancelAway(userrec* user) { }; * exports in the core */ -Server::Server() -{ -} - -Server::~Server() -{ -} - void Server::AddSocket(InspSocket* sock) { ServerInstance->module_sockets.push_back(sock); |