sboag 00/11/14 10:35:06
Modified: java/src/org/apache/xalan/templates StylesheetRoot.java
Log:
In recomposeOutput, fix it so the call to getOutput gets the output
from the stylesheet passed in, not the "this" output format.
Fixes impincl\impincl01 test.
Revision Changes Path
1.21 +1 -1
xml-xalan/java/src/org/apache/xalan/templates/StylesheetRoot.java
Index: StylesheetRoot.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xalan/templates/StylesheetRoot.java,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- StylesheetRoot.java 2000/11/13 16:27:11 1.20
+++ StylesheetRoot.java 2000/11/14 18:35:06 1.21
@@ -379,7 +379,7 @@
}
}
- OutputFormatExtended of = getOutput();
+ OutputFormatExtended of = stylesheet.getOutput();
if (null != of)
{