]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_spanningtree/protocolinterface.cpp
Remove ProtocolInterface::PushToClient()
[user/henk/code/inspircd.git] / src / modules / m_spanningtree / protocolinterface.cpp
index 786f8b74b4056e200c26ec75c78f8c27ff0b303e..957638517bd083e994f5cfe8c610c805f9aaafb3 100644 (file)
@@ -112,11 +112,6 @@ void SpanningTreeProtocolInterface::SendSNONotice(char snomask, const std::strin
        CmdBuilder("SNONOTICE").push(snomask).push_last(text).Broadcast();
 }
 
-void SpanningTreeProtocolInterface::PushToClient(User* target, const std::string &rawline)
-{
-       CmdBuilder("PUSH").push(target->uuid).push_last(rawline).Unicast(target);
-}
-
 void SpanningTreeProtocolInterface::SendMessage(Channel* target, char status, const std::string& text, MessageType msgtype)
 {
        const char* cmd = (msgtype == MSG_PRIVMSG ? "PRIVMSG" : "NOTICE");