sandygao 2002/08/09 08:36:04 Modified: java/src/org/apache/xerces/impl/dv/xs IDREFDV.java java/src/org/apache/xerces/impl/xs/models XSCMValidator.java Log: Fixing bugs [11004] [11016] and [11017]. They are all the same. It appears that the JLS requires every single-line-comment (//) to be terminated by an end-of-line sequence. 3 Xerces files had this problem. One was fixed by Neil in his previous commit. I'm fixing the other 2. Revision Changes Path 1.4 +3 -2 xml-xerces/java/src/org/apache/xerces/impl/dv/xs/IDREFDV.java Index: IDREFDV.java =================================================================== RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dv/xs/IDREFDV.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- IDREFDV.java 18 Jul 2002 20:48:43 -0000 1.3 +++ IDREFDV.java 9 Aug 2002 15:36:04 -0000 1.4 @@ -86,4 +86,5 @@ context.addIdRef((String)value); } -}//IDREF class \ No newline at end of file +}//IDREF class + 1.4 +3 -2 xml-xerces/java/src/org/apache/xerces/impl/xs/models/XSCMValidator.java Index: XSCMValidator.java =================================================================== RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/impl/xs/models/XSCMValidator.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- XSCMValidator.java 29 Jan 2002 01:15:16 -0000 1.3 +++ XSCMValidator.java 9 Aug 2002 15:36:04 -0000 1.4 @@ -114,4 +114,5 @@ */ public boolean checkUniqueParticleAttribution(SubstitutionGroupHandler subGroupHandler) throws XMLSchemaException; -} // XSCMValidator \ No newline at end of file +} // XSCMValidator +
--------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]