1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-25 03:57:43 +00:00

LibCore: Remove unused EventLoop::is_main_event_loop()

This commit is contained in:
Jelle Raaijmakers 2022-04-24 01:47:19 +02:00 committed by Linus Groh
parent 0bf56e6b40
commit 9e2a619fdc

View file

@ -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;
};