diff --git a/Userland/Libraries/LibCore/EventLoop.cpp b/Userland/Libraries/LibCore/EventLoop.cpp index e9f8e98b4c..99cfe1a144 100644 --- a/Userland/Libraries/LibCore/EventLoop.cpp +++ b/Userland/Libraries/LibCore/EventLoop.cpp @@ -425,11 +425,6 @@ public: } private: - bool is_main_event_loop() - { - return s_main_event_loop.with_locked([this](auto* main_event_loop) { return &m_event_loop == main_event_loop; }); - } - EventLoop& m_event_loop; };