Author: mrdon
Date: Sat Jul 12 07:43:27 2008
New Revision: 676182

URL: http://svn.apache.org/viewvc?rev=676182&view=rev
Log:
Adding override annotations
WW-2691

Modified:
    
struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/ActionMappingParametersInteceptor.java

Modified: 
struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/ActionMappingParametersInteceptor.java
URL: 
http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/ActionMappingParametersInteceptor.java?rev=676182&r1=676181&r2=676182&view=diff
==============================================================================
--- 
struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/ActionMappingParametersInteceptor.java
 (original)
+++ 
struts/struts2/trunk/core/src/main/java/org/apache/struts2/interceptor/ActionMappingParametersInteceptor.java
 Sat Jul 12 07:43:27 2008
@@ -78,6 +78,7 @@
      * @return the parameters from the action mapping in the context.  If none 
found, returns
      *         an empty map.
      */
+    @Override
     protected Map retrieveParameters(ActionContext ac) {
         ActionMapping mapping = (ActionMapping) 
ac.get(ServletActionContext.ACTION_MAPPING);
         if (mapping != null) {
@@ -96,6 +97,7 @@
      *                  In this class this is a no-op, since the parameters 
were fetched from the same location.
      *                  In subclasses both retrieveParameters() and 
addParametersToContext() should be overridden.
      */
+    @Override
     protected void addParametersToContext(ActionContext ac, Map newParams) {
         Map previousParams = ac.getParameters();
         Map combinedParams = null;


Reply via email to