sboag       00/12/31 01:41:43

  Modified:    java/src/org/apache/xalan/stree Child.java
  Log:
  Put a timeout of 100 milliseconds on the wait, so that it can check
  for a posted exception every so often.
  
  Revision  Changes    Path
  1.14      +1 -1      xml-xalan/java/src/org/apache/xalan/stree/Child.java
  
  Index: Child.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xalan/stree/Child.java,v
  retrieving revision 1.13
  retrieving revision 1.14
  diff -u -r1.13 -r1.14
  --- Child.java        2000/11/23 04:57:37     1.13
  +++ Child.java        2000/12/31 09:41:43     1.14
  @@ -307,7 +307,7 @@
             // System.out.println("Waiting... getChild " + i + " " + 
getNodeName());
             while (!m_parent.isComplete())
             {
  -            m_doc.wait();
  +            m_doc.wait(100);
               throwIfParseError();
   
               if (null != m_next)
  
  
  

Reply via email to