tmiller 2002/08/27 09:48:25
Modified: java/src/org/apache/xalan/xsltc/trax TransformerImpl.java
Log:
bug fix for output13 conf test
Revision Changes Path
1.56 +4 -4
xml-xalan/java/src/org/apache/xalan/xsltc/trax/TransformerImpl.java
Index: TransformerImpl.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/org/apache/xalan/xsltc/trax/TransformerImpl.java,v
retrieving revision 1.55
retrieving revision 1.56
diff -u -r1.55 -r1.56
--- TransformerImpl.java 12 Aug 2002 19:33:55 -0000 1.55
+++ TransformerImpl.java 27 Aug 2002 16:48:25 -0000 1.56
@@ -729,7 +729,7 @@
*
* @return Properties in effect for this Transformer
*/
- public Properties getOutputProperties() {
+ public Properties getOutputProperties() {
return (Properties) _properties.clone();
}
@@ -761,7 +761,7 @@
* @param properties The properties to use for the Transformer
* @throws IllegalArgumentException Never, errors are ignored
*/
- public void setOutputProperties(Properties properties)
+ public void setOutputProperties(Properties properties)
throws IllegalArgumentException
{
if (properties != null) {
@@ -929,7 +929,7 @@
// Call setDoctype() if needed
if (doctypePublic != null || doctypeSystem != null) {
- handler.setDoctype(doctypePublic, doctypeSystem);
+ handler.setDoctype(doctypeSystem, doctypePublic);
}
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]