From d9202f8169f90bd389231404658091d2ae29dfe1 Mon Sep 17 00:00:00 2001 From: Ms2ger Date: Wed, 15 Oct 2014 16:03:22 +0200 Subject: [PATCH] Remove the reflector field from Document. This field became unused in commit 99a36cbeb6077976861d94b7af16e9e57994a14d. --- components/script/dom/document.rs | 2 -- 1 file changed, 2 deletions(-) diff --git a/components/script/dom/document.rs b/components/script/dom/document.rs index bbcf3514734..2a4f70fdf95 100644 --- a/components/script/dom/document.rs +++ b/components/script/dom/document.rs @@ -78,7 +78,6 @@ pub enum IsHTMLDocument { #[privatize] pub struct Document { node: Node, - reflector_: Reflector, window: JS, idmap: RefCell>>>, implementation: MutNullableJS, @@ -301,7 +300,6 @@ impl Document { Document { node: Node::new_without_doc(DocumentNodeTypeId), - reflector_: Reflector::new(), window: JS::from_rooted(window), idmap: RefCell::new(HashMap::new()), implementation: Default::default(),