auto merge of #3685 : Ms2ger/servo/doc-reflector, r=jdm

This field became unused in commit 99a36cbeb6.
This commit is contained in:
bors-servo 2014-10-15 08:09:23 -06:00
commit 08b10a6d7d

View file

@ -78,7 +78,6 @@ pub enum IsHTMLDocument {
#[privatize] #[privatize]
pub struct Document { pub struct Document {
node: Node, node: Node,
reflector_: Reflector,
window: JS<Window>, window: JS<Window>,
idmap: RefCell<HashMap<Atom, Vec<JS<Element>>>>, idmap: RefCell<HashMap<Atom, Vec<JS<Element>>>>,
implementation: MutNullableJS<DOMImplementation>, implementation: MutNullableJS<DOMImplementation>,
@ -301,7 +300,6 @@ impl Document {
Document { Document {
node: Node::new_without_doc(DocumentNodeTypeId), node: Node::new_without_doc(DocumentNodeTypeId),
reflector_: Reflector::new(),
window: JS::from_rooted(window), window: JS::from_rooted(window),
idmap: RefCell::new(HashMap::new()), idmap: RefCell::new(HashMap::new()),
implementation: Default::default(), implementation: Default::default(),