You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ode.apache.org by mr...@apache.org on 2006/12/15 17:38:34 UTC

svn commit: r487592 - /incubator/ode/trunk/utils/src/main/java/org/apache/ode/utils/XMLParserUtils.java

Author: mriou
Date: Fri Dec 15 08:38:33 2006
New Revision: 487592

URL: http://svn.apache.org/viewvc?view=rev&rev=487592
Log:
Still some com.sun implementation of Xerces was left.

Modified:
    incubator/ode/trunk/utils/src/main/java/org/apache/ode/utils/XMLParserUtils.java

Modified: incubator/ode/trunk/utils/src/main/java/org/apache/ode/utils/XMLParserUtils.java
URL: http://svn.apache.org/viewvc/incubator/ode/trunk/utils/src/main/java/org/apache/ode/utils/XMLParserUtils.java?view=diff&rev=487592&r1=487591&r2=487592
==============================================================================
--- incubator/ode/trunk/utils/src/main/java/org/apache/ode/utils/XMLParserUtils.java (original)
+++ incubator/ode/trunk/utils/src/main/java/org/apache/ode/utils/XMLParserUtils.java Fri Dec 15 08:38:33 2006
@@ -18,12 +18,12 @@
  */
 package org.apache.ode.utils;
 
-import com.sun.org.apache.xml.internal.serialize.OutputFormat;
-import com.sun.org.apache.xml.internal.serialize.XMLSerializer;
 import org.apache.xerces.jaxp.DocumentBuilderFactoryImpl;
 import org.apache.xerces.jaxp.SAXParserFactoryImpl;
 import org.apache.xerces.parsers.DOMParser;
 import org.apache.xerces.parsers.SAXParser;
+import org.apache.xml.serialize.OutputFormat;
+import org.apache.xml.serialize.XMLSerializer;
 import org.xml.sax.*;
 
 import javax.xml.parsers.DocumentBuilderFactory;