Author: mrdon
Date: Tue Jan 30 21:38:02 2007
New Revision: 501736
URL: http://svn.apache.org/viewvc?view=rev&rev=501736
Log:
Fixing servlet action redirect not passing injected mapper to super class
WW-1662
Modified:
struts/struts2/trunk/core/src/main/java/org/apache/struts2/dispatcher/ServletActionRedirectResult.java
Modified:
struts/struts2/trunk/core/src/main/java/org/apache/struts2/dispatcher/ServletActionRedirectResult.java
URL:
http://svn.apache.org/viewvc/struts/struts2/trunk/core/src/main/java/org/apache/struts2/dispatcher/ServletActionRedirectResult.java?view=diff&rev=501736&r1=501735&r2=501736
==============================================================================
---
struts/struts2/trunk/core/src/main/java/org/apache/struts2/dispatcher/ServletActionRedirectResult.java
(original)
+++
struts/struts2/trunk/core/src/main/java/org/apache/struts2/dispatcher/ServletActionRedirectResult.java
Tue Jan 30 21:38:02 2007
@@ -135,7 +135,6 @@
protected String actionName;
protected String namespace;
protected String method;
- protected ActionMapper actionMapper;
private Map<String, String> requestParameters = new HashMap<String,
String>();
@@ -158,11 +157,6 @@
this.method = method;
}
- @Inject
- public void setActionMapper(ActionMapper mapper) {
- this.actionMapper = mapper;
- }
-
protected List<String> prohibitedResultParam = Arrays.asList(new String[] {
DEFAULT_PARAM, "namespace", "method", "encode", "parse",
"location",
"prependServletContext" });