Remove some extraneous &* pairs

This commit is contained in:
Cameron Zwarich 2014-09-19 21:32:02 -07:00
parent d768ee77ad
commit 8aec08074c
4 changed files with 6 additions and 6 deletions

View file

@ -42,7 +42,7 @@ impl Comment {
pub fn Constructor(global: &GlobalRef, data: DOMString) -> Fallible<Temporary<Comment>> {
let document = global.as_window().Document().root();
Ok(Comment::new(data, *&*document))
Ok(Comment::new(data, *document))
}
}