You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by lm...@apache.org on 2002/01/08 19:24:30 UTC

cvs commit: xml-xerces/java/src/org/apache/xerces/impl/dtd XMLDTDValidator.java

lmartin     02/01/08 10:24:30

  Modified:    java/src/org/apache/xerces/impl/dtd XMLDTDValidator.java
  Log:
  fixed a typo whereby we were storing NMTOKENS as the type of an attribute when it should have been NMTOKEN
  
  Revision  Changes    Path
  1.6       +2 -2      xml-xerces/java/src/org/apache/xerces/impl/dtd/XMLDTDValidator.java
  
  Index: XMLDTDValidator.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/impl/dtd/XMLDTDValidator.java,v
  retrieving revision 1.5
  retrieving revision 1.6
  diff -u -r1.5 -r1.6
  --- XMLDTDValidator.java	14 Dec 2001 20:48:51 -0000	1.5
  +++ XMLDTDValidator.java	8 Jan 2002 18:24:30 -0000	1.6
  @@ -124,7 +124,7 @@
    * @author Andy Clark, IBM
    * @author Jeffrey Rodriguez IBM
    *
  - * @version $Id: XMLDTDValidator.java,v 1.5 2001/12/14 20:48:51 lmartin Exp $
  + * @version $Id: XMLDTDValidator.java,v 1.6 2002/01/08 18:24:30 lmartin Exp $
    */
   public class XMLDTDValidator
   implements XMLComponent, 
  @@ -2550,7 +2550,7 @@
                   return attrDecl.simpleType.list ? fIDREFSSymbol : fIDREFSymbol;
               }
           case XMLSimpleType.TYPE_NMTOKEN: {
  -                return attrDecl.simpleType.list ? fNMTOKENSSymbol : fNMTOKENSSymbol;
  +                return attrDecl.simpleType.list ? fNMTOKENSSymbol : fNMTOKENSymbol;
               }
           case XMLSimpleType.TYPE_NOTATION: {
                   return fNOTATIONSymbol;
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: xerces-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xerces-cvs-help@xml.apache.org