Author: lukaszlenart
Date: Fri Jul 12 07:14:18 2013
New Revision: 1502449
URL: http://svn.apache.org/r1502449
Log:
WW-4122 Improves loop
Modified:
struts/struts2/trunk/xwork-core/src/main/java/com/opensymphony/xwork2/interceptor/annotations/AnnotationParameterFilterIntereptor.java
Modified:
struts/struts2/trunk/xwork-core/src/main/java/com/opensymphony/xwork2/interceptor/annotations/AnnotationParameterFilterIntereptor.java
URL:
http://svn.apache.org/viewvc/struts/struts2/trunk/xwork-core/src/main/java/com/opensymphony/xwork2/interceptor/annotations/AnnotationParameterFilterIntereptor.java?rev=1502449&r1=1502448&r2=1502449&view=diff
==============================================================================
---
struts/struts2/trunk/xwork-core/src/main/java/com/opensymphony/xwork2/interceptor/annotations/AnnotationParameterFilterIntereptor.java
(original)
+++
struts/struts2/trunk/xwork-core/src/main/java/com/opensymphony/xwork2/interceptor/annotations/AnnotationParameterFilterIntereptor.java
Fri Jul 12 07:14:18 2013
@@ -60,6 +60,7 @@ public class AnnotationParameterFilterIn
//i.e take param name up to first . (period) and match
against that
if (field.getName().equals(paramName)) {
allowed = true;
+ break;
}
}