From b4f34ee8604a3d653a892614d9315b66db5d519e Mon Sep 17 00:00:00 2001 From: Andrew Kaster Date: Tue, 29 Apr 2025 16:02:07 -0600 Subject: [PATCH] LibWeb: Remove unnecessary VERIFY from EventLoopPlugin's deferred_invoke --- Libraries/LibWeb/Platform/EventLoopPluginSerenity.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/Libraries/LibWeb/Platform/EventLoopPluginSerenity.cpp b/Libraries/LibWeb/Platform/EventLoopPluginSerenity.cpp index 78ae1f550b9..02bf5efc83f 100644 --- a/Libraries/LibWeb/Platform/EventLoopPluginSerenity.cpp +++ b/Libraries/LibWeb/Platform/EventLoopPluginSerenity.cpp @@ -23,7 +23,6 @@ void EventLoopPluginSerenity::spin_until(GC::Root> goal_con void EventLoopPluginSerenity::deferred_invoke(GC::Root> function) { - VERIFY(function); Core::deferred_invoke([function = move(function)]() { function->function()(); });