1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 12:48:10 +00:00

IRCClient: Remove unused dump() logic

A 'FIXME' asked for this to be removed, so I did.
This commit is contained in:
Ben Wiederhake 2020-09-12 12:18:05 +02:00 committed by Andreas Kling
parent 8498a5678d
commit 83b85e5578
6 changed files with 1 additions and 25 deletions

View file

@ -29,8 +29,8 @@
#include <LibWeb/DOM/DocumentFragment.h>
#include <LibWeb/DOM/DocumentType.h>
#include <LibWeb/DOM/ElementFactory.h>
#include <LibWeb/HTML/HTMLBodyElement.h>
#include <LibWeb/DOM/Text.h>
#include <LibWeb/HTML/HTMLBodyElement.h>
#include <time.h>
NonnullRefPtr<IRCLogBuffer> IRCLogBuffer::create()
@ -96,8 +96,3 @@ void IRCLogBuffer::add_message(const String& text, Color color)
m_container_element->append_child(wrapper);
m_document->force_layout();
}
void IRCLogBuffer::dump() const
{
// FIXME: Remove me?
}