mirror of
https://github.com/RGBCube/serenity
synced 2025-07-25 17:47:44 +00:00
LibWeb: Remove unused capture in queue_a_microtask()
This commit is contained in:
parent
a8e1599ae1
commit
ba065faa54
1 changed files with 1 additions and 1 deletions
|
@ -220,7 +220,7 @@ JS::VM& main_thread_vm()
|
|||
auto* script = active_script();
|
||||
|
||||
// NOTE: This keeps job_settings alive by keeping realm alive, which is holding onto job_settings.
|
||||
HTML::queue_a_microtask(script ? script->settings_object().responsible_document().ptr() : nullptr, [job_settings, job = move(job), realm, script_or_module = move(script_or_module)]() mutable {
|
||||
HTML::queue_a_microtask(script ? script->settings_object().responsible_document().ptr() : nullptr, [job_settings, job = move(job), script_or_module = move(script_or_module)]() mutable {
|
||||
// The dummy execution context has to be kept up here to keep it alive for the duration of the function.
|
||||
Optional<JS::ExecutionContext> dummy_execution_context;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue