[jboss-cvs] JBossAS SVN: r60139 - trunk/j2ee/src/main/javax/xml/stream.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Jan 31 11:04:37 EST 2007


Author: jason.greene at jboss.com
Date: 2007-01-31 11:04:37 -0500 (Wed, 31 Jan 2007)
New Revision: 60139

Modified:
   trunk/j2ee/src/main/javax/xml/stream/XMLEventFactory.java
Log:
Fix stupid mistake

Modified: trunk/j2ee/src/main/javax/xml/stream/XMLEventFactory.java
===================================================================
--- trunk/j2ee/src/main/javax/xml/stream/XMLEventFactory.java	2007-01-31 15:59:25 UTC (rev 60138)
+++ trunk/j2ee/src/main/javax/xml/stream/XMLEventFactory.java	2007-01-31 16:04:37 UTC (rev 60139)
@@ -44,10 +44,10 @@
 public abstract class XMLEventFactory
 {
    // This isn't part of the API, although it should be...
-   private static final String XML_EVENT_FACTORY_KEY = "com.ctc.wstx.stax.WstxEventFactory";
+   private static final String XML_EVENT_FACTORY_KEY = "javax.xml.stream.XMLEventFactory";
 
    // Private because it's implementation.
-   private static final String XML_EVENT_FACTORY_DEFAULT = "com.bea.xml.stream.EventFactory";
+   private static final String XML_EVENT_FACTORY_DEFAULT = "com.ctc.wstx.stax.WstxEventFactory";
 
    protected XMLEventFactory()
    {




More information about the jboss-cvs-commits mailing list