Merge pull request #2795 from rgv151/patch-1

Remove dead code in findAll proc
This commit is contained in:
Andreas Rumpf
2015-05-26 12:16:49 +02:00

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: