Browse Source

Remove Crimson reference, switch to Xerces.

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@272536 13f79535-47bb-0310-9956-ffa450edef68
master
Erik Hatcher 23 years ago
parent
commit
780343856b
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/main/org/apache/tools/ant/taskdefs/optional/XMLValidateTask.java

+ 2
- 2
src/main/org/apache/tools/ant/taskdefs/optional/XMLValidateTask.java View File

@@ -96,9 +96,9 @@ public class XMLValidateTask extends Task {
* The default implementation parser classname used by the task to process
* validation.
*/
// The crimson implementation is shipped with ant.
// The Xerces implementation ships with Ant.
public static String DEFAULT_XML_READER_CLASSNAME
= "org.apache.crimson.parser.XMLReaderImpl";
= "org.apache.xerces.parsers.SAXParser";

protected static String INIT_FAILED_MSG = "Could not start xml validation: ";



Loading…
Cancel
Save