File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -77,15 +77,19 @@ public ActionContext bind() {
77
77
return this ;
78
78
}
79
79
80
- @ Override
81
80
public ActionContext withActionInvocation (ActionInvocation actionInvocation ) {
81
+ return withActionInvocation ((org .apache .struts2 .ActionInvocation ) actionInvocation );
82
+ }
83
+
84
+ @ Override
85
+ public ActionContext withActionInvocation (org .apache .struts2 .ActionInvocation actionInvocation ) {
82
86
super .withActionInvocation (actionInvocation );
83
87
return this ;
84
88
}
85
89
86
90
@ Override
87
91
public ActionInvocation getActionInvocation () {
88
- return super .getActionInvocation ();
92
+ return ActionInvocation . adapt ( super .getActionInvocation () );
89
93
}
90
94
91
95
@ Override
Original file line number Diff line number Diff line change 18
18
*/
19
19
package org .apache .struts2 ;
20
20
21
- import com .opensymphony .xwork2 .Action ;
22
- import com .opensymphony .xwork2 .ActionInvocation ;
23
21
import com .opensymphony .xwork2 .conversion .impl .ConversionData ;
24
22
import com .opensymphony .xwork2 .inject .Container ;
25
23
import com .opensymphony .xwork2 .util .ValueStack ;
You can’t perform that action at this time.
0 commit comments