From e66313e53638dbdb3e1b89c84e7f8da79a322dcc Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Tue, 25 Apr 2023 17:53:33 +0200 Subject: [PATCH] LibCore: Remove unused cruft in EventLoop.h --- Userland/Libraries/LibCore/EventLoop.h | 8 -------- 1 file changed, 8 deletions(-) diff --git a/Userland/Libraries/LibCore/EventLoop.h b/Userland/Libraries/LibCore/EventLoop.h index e79ec3c2ad..4d09340091 100644 --- a/Userland/Libraries/LibCore/EventLoop.h +++ b/Userland/Libraries/LibCore/EventLoop.h @@ -94,17 +94,9 @@ public: static EventLoop& current(); - void did_post_event(Badge); EventLoopImplementation& impl() { return *m_impl; } private: - void wait_for_event(WaitMode); - Optional