diff --git a/components/script/dom/bindings/js.rs b/components/script/dom/bindings/js.rs index 2abba36b1e1..a842583cecb 100644 --- a/components/script/dom/bindings/js.rs +++ b/components/script/dom/bindings/js.rs @@ -390,16 +390,10 @@ impl MutNullableJS { self.ptr.get().map(Temporary::new) } - /// Retrieve a copy of the inner optional `JS`. For use by layout, which - /// can't use safe types like Temporary. - pub unsafe fn get_inner(&self) -> Option> { - self.ptr.get() - } - /// Retrieve a copy of the inner optional `JS` as `LayoutJS`. /// For use by layout, which can't use safe types like Temporary. pub unsafe fn get_inner_as_layout(&self) -> Option> { - self.get_inner().map(|js| js.to_layout()) + self.ptr.get().map(|js| js.to_layout()) } /// Retrieve a copy of the current inner value. If it is `None`, it is