diff options
author | Adam <Adam@anope.org> | 2016-09-25 20:10:33 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2016-09-25 20:10:33 -0400 |
commit | f3bfaa814ac9e12bb151620ad807b1f9e57ae323 (patch) | |
tree | a9e8a11be22687193b417fe3c97a40de43c9a6b0 /src/service.cpp | |
parent | aee628f6bb7d2a510802a70b635a4c1b4a4fe7c4 (diff) |
Get rid of service alias stuff, make proto mods link to each other
Diffstat (limited to 'src/service.cpp')
-rw-r--r-- | src/service.cpp | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/src/service.cpp b/src/service.cpp index 865c479df..9e99d0cad 100644 --- a/src/service.cpp +++ b/src/service.cpp @@ -65,14 +65,3 @@ Service::~Service() ServiceManager::Get()->Unregister(this); } -ServiceAlias::ServiceAlias(const Anope::string &type, const Anope::string &from, const Anope::string &to) : t(type), f(from) -{ - ServiceManager::Get()->AddAlias(type, from, to); -} - -ServiceAlias::~ServiceAlias() -{ - ServiceManager::Get()->DelAlias(t, f); -} - - |