----- Original Message ----- From: <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Sunday, April 21, 2002 06:46 Subject: cvs commit: jakarta-ant/src/main/org/apache/tools/ant/taskdefs/optional XMLValidateTask.java
> ehatcher 02/04/21 06:46:07 > > Modified: src/main/org/apache/tools/ant/taskdefs/optional > XMLValidateTask.java > Log: > Remove Crimson reference, switch to Xerces. > > Revision Changes Path > 1.17 +2 -2 jakarta-ant/src/main/org/apache/tools/ant/taskdefs/optional/XMLValidateTask. java > > Index: XMLValidateTask.java > =================================================================== > RCS file: /home/cvs/jakarta-ant/src/main/org/apache/tools/ant/taskdefs/optional/XMLVal idateTask.java,v > retrieving revision 1.16 > retrieving revision 1.17 > diff -u -r1.16 -r1.17 > --- XMLValidateTask.java 20 Apr 2002 16:14:32 -0000 1.16 > +++ XMLValidateTask.java 21 Apr 2002 13:46:07 -0000 1.17 > @@ -96,9 +96,9 @@ > * 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"; 1. Do we need to change the docs for this? 2. Shouldnt this kind of thing go in a global constants file; Constants.java, for all those other tasks that may need to refer to the default parser? -- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>