mmidy 01/02/14 08:54:55
Modified: java/compat_src/org/apache/xalan/xslt XSLTInputSource.java
Log:
Call local setSystemId.
Revision Changes Path
1.5 +1 -2
xml-xalan/java/compat_src/org/apache/xalan/xslt/XSLTInputSource.java
Index: XSLTInputSource.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/compat_src/org/apache/xalan/xslt/XSLTInputSource.java,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- XSLTInputSource.java 2001/02/02 18:59:59 1.4
+++ XSLTInputSource.java 2001/02/14 16:54:54 1.5
@@ -116,7 +116,6 @@
public XSLTInputSource (String systemId)
{
saxSource = new SAXSource();
- saxSource.setSystemId(systemId);
this.setSystemId(systemId);
}
@@ -190,7 +189,7 @@
saxSource.setInputSource(isource);
//saxSource.setXMLReader(isource.getCharacterStream());
this.setEncoding(isource.getEncoding());
- saxSource.setSystemId(isource.getSystemId());
+ this.setSystemId(isource.getSystemId());
}
/**