Remove unnecessary mutability.

This commit is contained in:
Ms2ger 2013-10-06 09:15:38 +02:00
parent 17796725f4
commit 179582d939
3 changed files with 3 additions and 3 deletions

View file

@ -722,7 +722,7 @@ impl ScriptTask {
page.next_subpage_id.clone(),
self.constellation_chan.clone());
let mut document = HTMLDocument::new(Some(window));
let document = HTMLDocument::new(Some(window));
let HtmlParserResult {root, discovery_port, url: final_url} = html_parsing_result;
document.set_root(root);