Remove unused children_count method from TNode.

The semantics of this method with respect to anonymous children are unclear.
Thankfully it's unused, so we can remove it.
This commit is contained in:
Bobby Holley 2016-08-10 15:17:16 -07:00
parent b56297f2a5
commit 1799b0a5df
3 changed files with 0 additions and 13 deletions

View file

@ -170,10 +170,6 @@ impl<'ln> TNode for ServoLayoutNode<'ln> {
self.opaque().0
}
fn children_count(&self) -> u32 {
unsafe { self.node.children_count() }
}
fn as_element(&self) -> Option<ServoLayoutElement<'ln>> {
as_element(self.node)
}