mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-28 19:59:17 +00:00
IRCClient: Remove unused dump() logic
A 'FIXME' asked for this to be removed, so I did.
This commit is contained in:
parent
8498a5678d
commit
83b85e5578
Notes:
sideshowbarker
2024-07-19 02:44:02 +09:00
Author: https://github.com/BenWiederhake
Commit: 83b85e5578
Pull-request: https://github.com/SerenityOS/serenity/pull/3464
6 changed files with 1 additions and 25 deletions
|
@ -77,14 +77,6 @@ void IRCChannel::add_message(const String& text, Color color)
|
|||
window().did_add_message();
|
||||
}
|
||||
|
||||
void IRCChannel::dump() const
|
||||
{
|
||||
printf("IRCChannel{%p}: %s\n", this, m_name.characters());
|
||||
for (auto& member : m_members)
|
||||
printf(" (%c)%s\n", member.prefix ? member.prefix : ' ', member.name.characters());
|
||||
log().dump();
|
||||
}
|
||||
|
||||
void IRCChannel::say(const String& text)
|
||||
{
|
||||
m_client.send_privmsg(m_name, text);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue