diff --git a/Libraries/LibJS/Runtime/Completion.h b/Libraries/LibJS/Runtime/Completion.h index 477dec39cac..e26f59e0d58 100644 --- a/Libraries/LibJS/Runtime/Completion.h +++ b/Libraries/LibJS/Runtime/Completion.h @@ -301,12 +301,6 @@ public: return Completion { Completion::Type::Throw, error.error }; } - ValueType release_allocated_value_but_fixme_should_propagate_errors() - { - VERIFY(!is_error()); - return release_value(); - } - private: Variant m_value_or_error; };