mirror of
https://github.com/nim-lang/Nim.git
synced 2025-12-30 18:02:05 +00:00
Remove dead code in findAll proc
This commit is contained in:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user