diff options
author | Jelle Raaijmakers <jelle@gmta.nl> | 2022-04-27 18:03:54 +0200 |
---|---|---|
committer | Idan Horowitz <idan.horowitz@gmail.com> | 2022-04-27 22:59:15 +0200 |
commit | f8c81b2f01be4de6b4904433bfa5d49abf8028d5 (patch) | |
tree | 03a7a8adbc74615de6e1aaeb7770b5768ffedfa6 | |
parent | a87c85f4011169541583fe5530b5c5d1ca7f5991 (diff) | |
download | serenity-f8c81b2f01be4de6b4904433bfa5d49abf8028d5.zip |
LibCore: Remove fixed EventLoop FIXME
This was resolved in commit f25123df66.
-rw-r--r-- | Userland/Libraries/LibCore/EventLoop.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/Userland/Libraries/LibCore/EventLoop.cpp b/Userland/Libraries/LibCore/EventLoop.cpp index e9e91cce97..a255fa287b 100644 --- a/Userland/Libraries/LibCore/EventLoop.cpp +++ b/Userland/Libraries/LibCore/EventLoop.cpp @@ -332,7 +332,6 @@ EventLoop::EventLoop([[maybe_unused]] MakeInspectable make_inspectable) make_inspectable = Core::EventLoop::MakeInspectable::Yes; if (make_inspectable == MakeInspectable::Yes - // FIXME: Deadlock potential; though the main loop and inspector server connection are rarely used in conjunction && !s_inspector_server_connection.with_locked([](auto inspector_server_connection) { return inspector_server_connection; })) { if (!connect_to_inspector_server()) dbgln("Core::EventLoop: Failed to connect to InspectorServer"); |