This commit is contained in:
Josh Johnson 2018-04-27 23:15:05 -04:00
parent c37ac45e80
commit 6f0bbe3ed7
4 changed files with 5 additions and 5 deletions

View file

@ -94,7 +94,7 @@ export class XmlTreeDataProvider implements TreeDataProvider<any> {
const array = new Array<any>();
for (let i = 0; i < node.childNodes.length; i++) {
let child = node.childNodes[i];
const child = node.childNodes[i];
if (child.tagName) {
array.push(child);