Remove commented-out logging on each record modification.
authorMike Taylor <mike@indexdata.com>
Mon, 24 Jul 2006 17:01:46 +0000 (17:01 +0000)
committerMike Taylor <mike@indexdata.com>
Mon, 24 Jul 2006 17:01:46 +0000 (17:01 +0000)
Downgrade ###-comment to ##

lib/ZOOM/IRSpy/Record.pm

index 2f67dc1..85d4653 100644 (file)
@@ -1,4 +1,4 @@
-# $Id: Record.pm,v 1.8 2006-07-24 16:44:00 mike Exp $
+# $Id: Record.pm,v 1.9 2006-07-24 17:01:46 mike Exp $
 
 package ZOOM::IRSpy::Record;
 
 
 package ZOOM::IRSpy::Record;
 
@@ -86,10 +86,7 @@ sub append_entry {
                   scalar(@nodes), " matches for '$xpath': using first")
        if @nodes > 1;
 
                   scalar(@nodes), " matches for '$xpath': using first")
        if @nodes > 1;
 
-    my $node = $nodes[0];
-    # $node ISA XML::LibXML::ElementXML::LibXML::Element
-    $this->_half_decent_appendWellBalancedChunk($node, $frag);
-    #print STDERR "POST: zeerex='$root' = \n", $root->toString(), "\n";
+    $this->_half_decent_appendWellBalancedChunk($nodes[0], $frag);
 }
 
 
 }
 
 
@@ -140,7 +137,7 @@ sub _half_decent_appendWellBalancedChunk {
     die "mismatched XML start/end <$open>...<$close>"
        if $close ne $tag;
     print STDERR "tag='$tag', attrs=[$attrs], content='$content'\n";
     die "mismatched XML start/end <$open>...<$close>"
        if $close ne $tag;
     print STDERR "tag='$tag', attrs=[$attrs], content='$content'\n";
-    die "### no code yet to make DOM node";
+    die "## no code yet to make DOM node";
 }
 
 
 }