From 54fb0cd5aa7d090d5c3da5ab54988c86ba8a2e8e Mon Sep 17 00:00:00 2001 From: danieldg Date: Mon, 16 Nov 2009 17:59:06 +0000 Subject: Use ServiceProvider for inter-module dependencies This will stop dependency chains from preventing module reloads when it is not actually needed; however, it removes some failsafes that will need to be reimplemented in order to avoid unmapped vtables. This deprecates Request as an inter-module signaling mechanism, although SQL still uses it. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@12140 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules/m_exemptchanops.cpp | 6 ------ 1 file changed, 6 deletions(-) (limited to 'src/modules/m_exemptchanops.cpp') diff --git a/src/modules/m_exemptchanops.cpp b/src/modules/m_exemptchanops.cpp index 9e6b735ed..8b3fbf074 100644 --- a/src/modules/m_exemptchanops.cpp +++ b/src/modules/m_exemptchanops.cpp @@ -73,7 +73,6 @@ class ModuleExemptChanOps : public Module ServerInstance->Modules->Attach(eventlist, this, 4); OnRehash(NULL); - ServerInstance->Modules->PublishInterface("ChannelBanList", this); } virtual Version GetVersion() @@ -120,11 +119,6 @@ class ModuleExemptChanOps : public Module return MOD_RES_PASSTHRU; } - - virtual ~ModuleExemptChanOps() - { - ServerInstance->Modules->UnpublishInterface("ChannelBanList", this); - } }; MODULE_INIT(ModuleExemptChanOps) -- cgit v1.2.3