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: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]