Change the default service provider back to org.apache.xalan.processor.TransformerFactoryImpl,

which was the default before the JAXP 1.3 integration.


git-svn-id: https://svn.apache.org/repos/asf/xml/commons/trunk@226232 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
mkwan 2005-06-14 19:15:12 +00:00
parent 57c5a282f3
commit 081cad56b4

View File

@ -113,8 +113,8 @@ public abstract class TransformerFactory {
return (TransformerFactory) FactoryFinder.find( return (TransformerFactory) FactoryFinder.find(
/* The default property name according to the JAXP spec */ /* The default property name according to the JAXP spec */
"javax.xml.transform.TransformerFactory", "javax.xml.transform.TransformerFactory",
/* The fallback implementation class name, XSLTC */ /* The fallback implementation class name */
"org.apache.xalan.xsltc.trax.TransformerFactoryImpl"); "org.apache.xalan.processor.TransformerFactoryImpl");
} catch (FactoryFinder.ConfigurationError e) { } catch (FactoryFinder.ConfigurationError e) {
throw new TransformerFactoryConfigurationError( throw new TransformerFactoryConfigurationError(
e.getException(), e.getException(),