You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by sb...@apache.org on 2001/06/24 19:20:29 UTC

cvs commit: xml-xalan/java/src/org/apache/xml/dtm/ref CoroutineSAXParser.java

sboag       01/06/24 10:20:28

  Modified:    java/src/org/apache/xml/dtm/ref CoroutineSAXParser.java
  Log:
  In co_yield, comment out throw of the shutdownException if
  (arg == null).
  You can replicate this sometimes with:
  testo attribset\attribset01 -flavor th -edump
  Since I'm not sure what good it does to throw a shutdown
  exception here, and it certainly does harm,
  I'm simply commenting it out for the time being.
  
  Revision  Changes    Path
  1.4       +7 -1      xml-xalan/java/src/org/apache/xml/dtm/ref/CoroutineSAXParser.java
  
  Index: CoroutineSAXParser.java
  ===================================================================
  RCS file: /home/cvs/xml-xalan/java/src/org/apache/xml/dtm/ref/CoroutineSAXParser.java,v
  retrieving revision 1.3
  retrieving revision 1.4
  diff -u -r1.3 -r1.4
  --- CoroutineSAXParser.java	2001/06/21 23:46:43	1.3
  +++ CoroutineSAXParser.java	2001/06/24 17:20:28	1.4
  @@ -715,7 +715,13 @@
   
           if (arg == null) {
             fCoroutineManager.co_exit_to(arg, fParserCoroutineID, fAppCoroutineID);
  -          throw shutdownException;
  +          // %REVIEW% For some reason the (arg == null) condition is occuring.
  +          // You can replicate this sometimes with:
  +          // testo attribset\attribset01 -flavor th -edump
  +          // Since I'm not sure what good it does to throw a shutdown 
  +          // exception here, I'm simply commenting it out for the time 
  +          // being.
  +          // throw shutdownException;
           }
   
   
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: xalan-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xalan-cvs-help@xml.apache.org