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
commit 83b85e5578
Notes: sideshowbarker 2024-07-19 02:44:02 +09:00
6 changed files with 1 additions and 25 deletions

View file

@ -45,8 +45,6 @@ public:
void add_message(char prefix, const String& name, const String& text, Color = Color::Black);
void add_message(const String& text, Color = Color::Black);
void dump() const;
const IRCLogBuffer& log() const { return *m_log; }
IRCLogBuffer& log() { return *m_log; }