Remove unreachable statement. ok davec@

This commit is contained in:
Dale Rahn 2013-09-19 15:09:18 -04:00
parent b557a33f7c
commit 00b183a8b5

View file

@ -132,7 +132,6 @@ func removeChildNode(children []*blockNode, node *blockNode) []*blockNode {
copy(children[i:], children[i+1:])
children[len(children)-1] = nil
return children[:len(children)-1]
i--
}
}
return children