Author: lukaszlenart Date: Wed Sep 15 15:23:16 2010 New Revision: 997365 URL: http://svn.apache.org/viewvc?rev=997365&view=rev Log: Reverted setIncludes() implementation (commited by mistake)
Modified: struts/struts2/trunk/xwork-core/src/main/java/com/opensymphony/xwork2/interceptor/ChainingInterceptor.java Modified: struts/struts2/trunk/xwork-core/src/main/java/com/opensymphony/xwork2/interceptor/ChainingInterceptor.java URL: http://svn.apache.org/viewvc/struts/struts2/trunk/xwork-core/src/main/java/com/opensymphony/xwork2/interceptor/ChainingInterceptor.java?rev=997365&r1=997364&r2=997365&view=diff ============================================================================== --- struts/struts2/trunk/xwork-core/src/main/java/com/opensymphony/xwork2/interceptor/ChainingInterceptor.java (original) +++ struts/struts2/trunk/xwork-core/src/main/java/com/opensymphony/xwork2/interceptor/ChainingInterceptor.java Wed Sep 15 15:23:16 2010 @@ -211,7 +211,7 @@ public class ChainingInterceptor extends * @param includes the includes list */ public void setIncludes(Collection<String> includes) { - this.includes.addAll(includes); + this.includes = includes; } }