costin 00/11/10 17:32:13
Modified: java/src/javax/xml/transform TransformerFactory.java
Log:
Added a default for the TransformImpl.
This avoids problems with ClassLoaders and broken builds. It also
allows xalan to work even if services/ is not present.
Scott, I think you forgot to check in some changes in Source ( the systemId),
I can't build right now.
Revision Changes Path
1.6 +2 -1
xml-xalan/java/src/javax/xml/transform/TransformerFactory.java
Index: TransformerFactory.java
===================================================================
RCS file:
/home/cvs/xml-xalan/java/src/javax/xml/transform/TransformerFactory.java,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- TransformerFactory.java 2000/11/09 23:03:59 1.5
+++ TransformerFactory.java 2000/11/11 01:32:13 1.6
@@ -116,7 +116,8 @@
throws TFactoryConfigurationError
{
- String classname = findFactory(defaultPropName, null);
+ String classname = findFactory(defaultPropName,
+
"org.apache.xalan.processor.TransformerFactoryImpl");
if (classname == null)
{