From f2cdf27dd9c45f91f4184b81ea3b9be7c5d88173 Mon Sep 17 00:00:00 2001 From: attilamolnar Date: Thu, 11 Apr 2013 23:47:45 +0200 Subject: Replace hardcoded mode letters passed to IsModeSet() and GetModeParameter() with ModeHandlers, part 1 --- src/channels.cpp | 5 ----- 1 file changed, 5 deletions(-) (limited to 'src/channels.cpp') diff --git a/src/channels.cpp b/src/channels.cpp index 8a4ed3f49..8c59e6893 100644 --- a/src/channels.cpp +++ b/src/channels.cpp @@ -44,11 +44,6 @@ Channel::Channel(const std::string &cname, time_t ts) modes.reset(); } -void Channel::SetMode(char mode,bool mode_on) -{ - modes[mode-65] = mode_on; -} - void Channel::SetMode(ModeHandler* mh, bool on) { modes[mh->GetModeChar() - 65] = on; -- cgit v1.2.3