You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by re...@apache.org on 2001/09/08 18:42:00 UTC

cvs commit: jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/util/xml XmlMapper.java

remm        01/09/08 09:42:00

  Modified:    catalina/src/share/org/apache/catalina/util/xml
                        XmlMapper.java
  Log:
  - Raise the max number of allowed rules in the XML mapper.
  
  Revision  Changes    Path
  1.9       +2 -2      jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/util/xml/XmlMapper.java
  
  Index: XmlMapper.java
  ===================================================================
  RCS file: /home/cvs/jakarta-tomcat-4.0/catalina/src/share/org/apache/catalina/util/xml/XmlMapper.java,v
  retrieving revision 1.8
  retrieving revision 1.9
  diff -u -r1.8 -r1.9
  --- XmlMapper.java	2001/07/22 20:25:15	1.8
  +++ XmlMapper.java	2001/09/08 16:42:00	1.9
  @@ -328,8 +328,8 @@
               this.action=action;
           }
       }
  -    Rule rules[]=new Rule[256];
  -    Rule matching[]=new Rule[256];
  +    Rule rules[]=new Rule[512];
  +    Rule matching[]=new Rule[512];
       int ruleCount=0;
   
       /**