Remove some into_owned calls.

This commit is contained in:
Ms2ger 2014-06-28 17:07:47 +02:00
parent 9f915e9e42
commit 924031135e
4 changed files with 4 additions and 4 deletions

View file

@ -1539,7 +1539,7 @@ impl<'a> NodeMethods for JSRef<'a, Node> {
content.push_str(text.deref().characterdata.data.deref().borrow().as_slice());
}
}
Some(content.into_owned())
Some(content)
}
CommentNodeTypeId |
TextNodeTypeId |