summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Userland/Libraries/LibCore/EventLoop.cpp5
-rw-r--r--Userland/Libraries/LibCore/EventLoop.h2
2 files changed, 0 insertions, 7 deletions
diff --git a/Userland/Libraries/LibCore/EventLoop.cpp b/Userland/Libraries/LibCore/EventLoop.cpp
index a1784964fd..f07ef2fed4 100644
--- a/Userland/Libraries/LibCore/EventLoop.cpp
+++ b/Userland/Libraries/LibCore/EventLoop.cpp
@@ -894,11 +894,6 @@ void EventLoop::unregister_notifier(Badge<Notifier>, Notifier& notifier)
s_notifiers->remove(&notifier);
}
-void EventLoop::wake_current()
-{
- EventLoop::current().wake();
-}
-
void EventLoop::wake()
{
dbgln_if(EVENTLOOP_DEBUG, "Core::EventLoop::wake()");
diff --git a/Userland/Libraries/LibCore/EventLoop.h b/Userland/Libraries/LibCore/EventLoop.h
index 7b49eb8e8f..d9a75cb4e4 100644
--- a/Userland/Libraries/LibCore/EventLoop.h
+++ b/Userland/Libraries/LibCore/EventLoop.h
@@ -118,8 +118,6 @@ public:
static EventLoop& current();
- static void wake_current();
-
private:
void wait_for_event(WaitMode);
Optional<Time> get_next_timer_expiration();