Removed debugging dump() statements

This commit is contained in:
annie.sullivan%gmail.com 2005-12-01 23:16:05 +00:00
parent 479137fa10
commit 571c2d267c

View File

@ -69,15 +69,11 @@
if (foundStartMarker && !foundEndMarker)
items.push(item);
}
for (var i = 0; i < items.length; ++i) {
dump ("Removing child " + items[i].label + "\n");
for (var i = 0; i < items.length; ++i)
items[i].parentNode.removeChild(items[i]);
}
if (!foundStartMarker && !foundEndMarker) {
while (this.hasChildNodes()) {
dump("Removing child " + this.firstChild.getAttribute("label") + "\n");
while (this.hasChildNodes())
this.removeChild(this.firstChild);
}
}
LOG("KIDS = " + this.childNodes.length);
]]></body>