From f67aba687bb425ee8d2c810e00665a5bccf77af2 Mon Sep 17 00:00:00 2001 From: Attila Molnar Date: Wed, 30 Mar 2016 12:37:29 +0200 Subject: Remove User::SendText() and overrides completely --- include/users.h | 13 +------------ src/users.cpp | 21 --------------------- 2 files changed, 1 insertion(+), 33 deletions(-) diff --git a/include/users.h b/include/users.h index 8cbf8a8da..b97c62d4a 100644 --- a/include/users.h +++ b/include/users.h @@ -663,14 +663,6 @@ class CoreExport User : public Extensible */ void ForEachNeighbor(ForEachNeighborHandler& handler, bool include_self = true); - /** Write to the user, routing the line if the user is remote. - */ - virtual void SendText(const std::string& line) = 0; - - /** Write to the user, routing the line if the user is remote. - */ - void SendText(const char* text, ...) CUSTOM_PRINTF(2, 3); - /** Return true if the user shares at least one channel with another user * @param other The other user to compare the channel list against * @return True if the given user shares at least one channel with this user @@ -842,7 +834,6 @@ class CoreExport LocalUser : public User, public insp::intrusive_list_nodePI->PushToClient(this, line); -} - -void FakeUser::SendText(const std::string& line) -{ -} - -void User::SendText(const char *text, ...) -{ - std::string line; - VAFORMAT(line, text, text); - SendText(line); -} - void User::WriteRemoteNumeric(const Numeric::Numeric& numeric) { WriteNumeric(numeric); -- cgit v1.2.3