Author: remy.maucherat(a)jboss.com
Date: 2010-04-26 06:34:47 -0400 (Mon, 26 Apr 2010)
New Revision: 1449
Modified:
trunk/java/org/apache/catalina/core/StandardContext.java
trunk/webapps/docs/changelog.xml
Log:
- Port add filter before method fix.
Modified: trunk/java/org/apache/catalina/core/StandardContext.java
===================================================================
--- trunk/java/org/apache/catalina/core/StandardContext.java 2010-04-23 16:02:40 UTC (rev
1448)
+++ trunk/java/org/apache/catalina/core/StandardContext.java 2010-04-26 10:34:47 UTC (rev
1449)
@@ -2003,8 +2003,8 @@
System.arraycopy(filterMaps, 0, results, 0, filterMapInsertPoint);
results[filterMapInsertPoint] = filterMap;
System.arraycopy(filterMaps, filterMapInsertPoint, results,
- filterMaps.length - filterMapInsertPoint+1,
- filterMapInsertPoint);
+ filterMaps.length - (filterMapInsertPoint + 1),
+ filterMaps.length - filterMapInsertPoint);
filterMapInsertPoint++;
Modified: trunk/webapps/docs/changelog.xml
===================================================================
--- trunk/webapps/docs/changelog.xml 2010-04-23 16:02:40 UTC (rev 1448)
+++ trunk/webapps/docs/changelog.xml 2010-04-26 10:34:47 UTC (rev 1449)
@@ -31,6 +31,9 @@
<fix>
Default realm name with BASIC and DIGEST. (markt)
</fix>
+ <fix>
+ Add filter before method fix. (markt)
+ </fix>
</changelog>
</subsection>
<subsection name="Jasper">
Show replies by date