From 203e84c3781aa764379f545d47dd1e7ebe98dd66 Mon Sep 17 00:00:00 2001 From: Andreas Kling Date: Mon, 24 Apr 2023 07:46:49 +0200 Subject: [PATCH] LibCore: Remove unused EventLoop::Private::lock This mutex is no longer used for anything. --- Userland/Libraries/LibCore/EventLoop.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Userland/Libraries/LibCore/EventLoop.cpp b/Userland/Libraries/LibCore/EventLoop.cpp index d6a8d77393..13c99c9ceb 100644 --- a/Userland/Libraries/LibCore/EventLoop.cpp +++ b/Userland/Libraries/LibCore/EventLoop.cpp @@ -65,7 +65,6 @@ struct EventLoopTimer { }; struct EventLoop::Private { - Threading::Mutex lock; ThreadEventQueue& thread_event_queue; Private()