mirror of
https://github.com/servo/servo.git
synced 2025-06-24 17:14:33 +01:00
Remove Document's unused 'title'
There is no current use for this variable. This is a subtask for #1428.
This commit is contained in:
parent
156461e4ce
commit
cdf29d4394
1 changed files with 0 additions and 2 deletions
|
@ -87,7 +87,6 @@ pub struct Document {
|
||||||
reflector_: Reflector,
|
reflector_: Reflector,
|
||||||
window: @mut Window,
|
window: @mut Window,
|
||||||
doctype: DocumentType,
|
doctype: DocumentType,
|
||||||
title: ~str,
|
|
||||||
idmap: HashMap<DOMString, AbstractNode>,
|
idmap: HashMap<DOMString, AbstractNode>,
|
||||||
implementation: Option<@mut DOMImplementation>
|
implementation: Option<@mut DOMImplementation>
|
||||||
}
|
}
|
||||||
|
@ -120,7 +119,6 @@ impl Document {
|
||||||
reflector_: Reflector::new(),
|
reflector_: Reflector::new(),
|
||||||
window: window,
|
window: window,
|
||||||
doctype: doctype,
|
doctype: doctype,
|
||||||
title: ~"",
|
|
||||||
idmap: HashMap::new(),
|
idmap: HashMap::new(),
|
||||||
implementation: None
|
implementation: None
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue