summaryrefslogtreecommitdiff
path: root/Userland/Services/WebContent
diff options
context:
space:
mode:
authorLinus Groh <mail@linusgroh.de>2022-08-27 01:07:00 +0100
committerLinus Groh <mail@linusgroh.de>2022-08-27 11:29:10 +0100
commitdfb7588d300148ec72e1283947c4b37d71ffc460 (patch)
treefcb0eeeeb92aa1442a10face77437afbd58f741f /Userland/Services/WebContent
parent61bd9fef7d14b32e24c0d4d7841e569068d37629 (diff)
downloadserenity-dfb7588d300148ec72e1283947c4b37d71ffc460.zip
LibJS: Remove GlobalObject::{set_,}associated_realm()
Diffstat (limited to 'Userland/Services/WebContent')
-rw-r--r--Userland/Services/WebContent/WebContentConsoleClient.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/Userland/Services/WebContent/WebContentConsoleClient.cpp b/Userland/Services/WebContent/WebContentConsoleClient.cpp
index a94c1ff774..c048e9bc68 100644
--- a/Userland/Services/WebContent/WebContentConsoleClient.cpp
+++ b/Userland/Services/WebContent/WebContentConsoleClient.cpp
@@ -33,7 +33,6 @@ WebContentConsoleClient::WebContentConsoleClient(JS::Console& console, WeakPtr<J
// It gets removed immediately after creating the interpreter in Document::interpreter().
auto& eso = verify_cast<Web::HTML::EnvironmentSettingsObject>(*realm.host_defined());
vm.push_execution_context(eso.realm_execution_context());
- console_global_object->set_associated_realm(realm);
console_global_object->initialize_global_object(realm);
vm.pop_execution_context();