sboag 00/08/04 12:35:25
Modified: java/src/org/apache/xalan/stree Parent.java
Log:
Comment out debug diagnostics.
Revision Changes Path
1.4 +2 -2 xml-xalan/java/src/org/apache/xalan/stree/Parent.java
Index: Parent.java
===================================================================
RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/stree/Parent.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- Parent.java 2000/07/30 22:48:06 1.3
+++ Parent.java 2000/08/04 19:35:22 1.4
@@ -106,14 +106,14 @@
{
try
{
- System.out.println("Waiting... getChild " + i + " " +
getNodeName());
+ // System.out.println("Waiting... getChild " + i + " " +
getNodeName());
wait();
}
catch (InterruptedException e)
{
// That's OK, it's as good a time as any to check again
}
- System.out.println("... gotChild " + i);
+ // System.out.println("... gotChild " + i);
child = ((null != m_children) && (i >= 0) && i < m_children.length) ?
m_children[i] : null;
}