summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibJS/Runtime/GlobalObject.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Userland/Libraries/LibJS/Runtime/GlobalObject.cpp')
-rw-r--r--Userland/Libraries/LibJS/Runtime/GlobalObject.cpp11
1 files changed, 0 insertions, 11 deletions
diff --git a/Userland/Libraries/LibJS/Runtime/GlobalObject.cpp b/Userland/Libraries/LibJS/Runtime/GlobalObject.cpp
index 2a5fdd3446..68a253b537 100644
--- a/Userland/Libraries/LibJS/Runtime/GlobalObject.cpp
+++ b/Userland/Libraries/LibJS/Runtime/GlobalObject.cpp
@@ -183,17 +183,6 @@ void GlobalObject::initialize_global_object(Realm& realm)
GlobalObject::~GlobalObject() = default;
-Realm* GlobalObject::associated_realm()
-{
- return m_associated_realm;
-}
-
-void GlobalObject::set_associated_realm(Realm& realm)
-{
- VERIFY(&realm == &shape().realm());
- m_associated_realm = &realm;
-}
-
JS_DEFINE_NATIVE_FUNCTION(GlobalObject::gc)
{
#ifdef __serenity__