Remove dead code in findAll proc

This commit is contained in:
Bruce Doan
2015-05-26 00:01:35 +07:00
parent 71561bef58
commit ae3fc71462

View File

@@ -337,8 +337,7 @@ proc findAll*(n: XmlNode, tag: string, result: var seq[XmlNode]) =
continue
if child.tag == tag:
result.add(child)
elif child.k == xnElement:
child.findAll(tag, result)
child.findAll(tag, result)
proc findAll*(n: XmlNode, tag: string): seq[XmlNode] =
## Shortcut version to assign in let blocks. Example: