Skip to content

Commit

Permalink
[refactor] Remove the last small dependency on Apache Xalan, instead …
Browse files Browse the repository at this point in the history
…use the equivalent classes from Apache Xerces
  • Loading branch information
adamretter committed Dec 7, 2022
1 parent b47e668 commit f4a691f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
6 changes: 0 additions & 6 deletions exist-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -335,12 +335,6 @@
<scope>runtime</scope>
</dependency>

<dependency>
<groupId>xalan</groupId>
<artifactId>xalan</artifactId>
<version>2.7.2</version> <!-- needed an compile time for various dependencies -->
</dependency>

<dependency>
<groupId>net.sf.saxon</groupId>
<artifactId>Saxon-HE</artifactId>
Expand Down
4 changes: 2 additions & 2 deletions exist-core/src/main/java/org/exist/dom/memtree/NodeImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
*/
package org.exist.dom.memtree;

import org.apache.xml.utils.XML11Char;
import org.apache.xml.utils.XMLChar;
import org.apache.xerces.util.XML11Char;
import org.apache.xerces.util.XMLChar;
import org.exist.collections.Collection;
import org.exist.dom.INode;
import org.exist.dom.NodeListImpl;
Expand Down

0 comments on commit f4a691f

Please sign in to comment.