Changeset 25847


Ignore:
Timestamp:
2012-06-28T11:12:17+12:00 (12 years ago)
Author:
kjdon
Message:

removing debug print statements

Location:
main/trunk/greenstone3/src/java/org/greenstone/gsdl3/util
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • main/trunk/greenstone3/src/java/org/greenstone/gsdl3/util/GSXML.java

    r25819 r25847  
    710710        while (child != null)
    711711        {
    712           System.err.println("node name="+child.getNodeName()+", ns="+child.getNamespaceURI());
    713712          if (child.getNodeType() == Node.ELEMENT_NODE && child.getNamespaceURI().equals(namespace) && child.getLocalName() != null && child.getLocalName().equals(local_name))
    714713            {
     
    944943  public static void removeNamedElementNS(Element parent, String namespace_uri, String node_local_name, String attribute_name, String attribute_value)
    945944  {
    946     System.err.println("removeNmaedElement "+namespace_uri+node_local_name +attribute_name+attribute_value);
    947945    if (attribute_value.equals("")) {
    948946          // it has no identifying attribute, so we can't find any matches
     
    953951        if (old_elem != null)
    954952          {
    955             System.err.println("removing "+old_elem.getNodeName());
    956953            parent.removeChild(old_elem);
    957954          }
  • main/trunk/greenstone3/src/java/org/greenstone/gsdl3/util/GSXSLT.java

    r25820 r25847  
    145145        {
    146146          Element node = (Element) children.item(i);
    147             System.err.println("node name="+node.getNodeName()+", local name="+node.getLocalName()+", uri="+node.getNamespaceURI());
    148147            // remove any previous occurrences of xsl:template with the same value for name or match
    149148              String template_match = node.getAttribute("match");
Note: See TracChangeset for help on using the changeset viewer.