diff options
author | Peter Powell <petpow@saberuk.com> | 2019-05-09 12:37:44 +0100 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2019-05-09 12:37:44 +0100 |
commit | 7f979b895eadd482c16a354f656493adcc28072f (patch) | |
tree | cd6ec5fed7f1422b6eb32356e7e64aac868021ac /src/users.cpp | |
parent | 5610d70e4c14514e0e14be971fd0108c3ea3c1fb (diff) |
Delete some obsolete comments.
Diffstat (limited to 'src/users.cpp')
-rw-r--r-- | src/users.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/users.cpp b/src/users.cpp index aaaa06f19..3e1b4a8d4 100644 --- a/src/users.cpp +++ b/src/users.cpp @@ -121,7 +121,6 @@ const std::string& User::MakeHost() if (!this->cached_makehost.empty()) return this->cached_makehost; - // XXX: Is there really a need to cache this? this->cached_makehost = ident + "@" + GetRealHost(); return this->cached_makehost; } @@ -131,7 +130,6 @@ const std::string& User::MakeHostIP() if (!this->cached_hostip.empty()) return this->cached_hostip; - // XXX: Is there really a need to cache this? this->cached_hostip = ident + "@" + this->GetIPString(); return this->cached_hostip; } @@ -141,7 +139,6 @@ const std::string& User::GetFullHost() if (!this->cached_fullhost.empty()) return this->cached_fullhost; - // XXX: Is there really a need to cache this? this->cached_fullhost = nick + "!" + ident + "@" + GetDisplayedHost(); return this->cached_fullhost; } @@ -151,7 +148,6 @@ const std::string& User::GetFullRealHost() if (!this->cached_fullrealhost.empty()) return this->cached_fullrealhost; - // XXX: Is there really a need to cache this? this->cached_fullrealhost = nick + "!" + ident + "@" + GetRealHost(); return this->cached_fullrealhost; } |