mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-14 10:59:24 +02:00
IRCClient: Remove unused dump() logic
A 'FIXME' asked for this to be removed, so I did.
This commit is contained in:
committed by
Andreas Kling
parent
8498a5678d
commit
83b85e5578
Notes:
sideshowbarker
2024-07-19 02:44:02 +09:00
Author: https://github.com/BenWiederhake Commit: https://github.com/SerenityOS/serenity/commit/83b85e55788 Pull-request: https://github.com/SerenityOS/serenity/pull/3464
@@ -46,12 +46,6 @@ NonnullRefPtr<IRCQuery> IRCQuery::create(IRCClient& client, const String& name)
|
||||
return adopt(*new IRCQuery(client, name));
|
||||
}
|
||||
|
||||
void IRCQuery::dump() const
|
||||
{
|
||||
printf("IRCQuery{%p}: %s\n", this, m_name.characters());
|
||||
log().dump();
|
||||
}
|
||||
|
||||
void IRCQuery::add_message(char prefix, const String& name, const String& text, Color color)
|
||||
{
|
||||
log().add_message(prefix, name, text, color);
|
||||
|
||||
Reference in New Issue
Block a user