aboutsummaryrefslogtreecommitdiff
path: root/src/helperfuncs.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/helperfuncs.cpp')
-rw-r--r--src/helperfuncs.cpp9
1 files changed, 0 insertions, 9 deletions
diff --git a/src/helperfuncs.cpp b/src/helperfuncs.cpp
index 06848afd9..d78ed96a2 100644
--- a/src/helperfuncs.cpp
+++ b/src/helperfuncs.cpp
@@ -56,15 +56,6 @@ User* InspIRCd::FindNickOnly(const std::string &nick)
return iter->second;
}
-User *InspIRCd::FindUUID(const std::string &uid)
-{
- user_hash::iterator finduuid = this->Users.uuidlist.find(uid);
-
- if (finduuid == this->Users.uuidlist.end())
- return NULL;
-
- return finduuid->second;
-}
/* find a channel record by channel name and return a pointer to it */
Channel* InspIRCd::FindChan(const std::string &chan)