You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xerces.apache.org by mr...@apache.org on 2005/03/22 04:22:37 UTC

cvs commit: xml-xerces/java/src/org/apache/xerces/impl/xpath/regex ParserForXMLSchema.java

mrglavas    2005/03/21 19:22:37

  Modified:    java/src/org/apache/xerces/impl/xpath/regex
                        ParserForXMLSchema.java
  Log:
  Accessing static fields in a static way.
  
  Revision  Changes    Path
  1.8       +3 -3      xml-xerces/java/src/org/apache/xerces/impl/xpath/regex/ParserForXMLSchema.java
  
  Index: ParserForXMLSchema.java
  ===================================================================
  RCS file: /home/cvs/xml-xerces/java/src/org/apache/xerces/impl/xpath/regex/ParserForXMLSchema.java,v
  retrieving revision 1.7
  retrieving revision 1.8
  diff -u -r1.7 -r1.8
  --- ParserForXMLSchema.java	4 Oct 2004 22:07:40 -0000	1.7
  +++ ParserForXMLSchema.java	22 Mar 2005 03:22:37 -0000	1.8
  @@ -1,5 +1,5 @@
   /*
  - * Copyright 1999-2004 The Apache Software Foundation.
  + * Copyright 1999-2005 The Apache Software Foundation.
    * 
    * Licensed under the Apache License, Version 2.0 (the "License");
    * you may not use this file except in compliance with the License.
  @@ -100,7 +100,7 @@
       Token processParen() throws ParseException {
           this.next();
           Token tok = Token.createParen(this.parseRegex(), 0);
  -        if (this.read() != super.T_RPAREN)  throw ex("parser.factor.1", this.offset-1);
  +        if (this.read() != T_RPAREN)  throw ex("parser.factor.1", this.offset-1);
           this.next();                            // Skips ')'
           return tok;
       }
  
  
  

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