mirror of
https://github.com/apache/struts.git
synced 2026-08-31 19:35:40 +00:00
Cleans up code
This commit is contained in:
@@ -64,7 +64,7 @@ public class DefaultActionInvocation implements ActionInvocation {
|
||||
protected Result explicitResult;
|
||||
protected String resultCode;
|
||||
protected boolean executed = false;
|
||||
protected boolean pushAction = true;
|
||||
protected boolean pushAction;
|
||||
protected ObjectFactory objectFactory;
|
||||
protected ActionEventListener actionEventListener;
|
||||
protected ValueStackFactory valueStackFactory;
|
||||
@@ -243,7 +243,6 @@ public class DefaultActionInvocation implements ActionInvocation {
|
||||
if (asyncManager == null || !asyncManager.hasAsyncActionResult()) {
|
||||
if (interceptors.hasNext()) {
|
||||
final InterceptorMapping interceptorMapping = interceptors.next();
|
||||
String interceptorMsg = "interceptorMapping: " + interceptorMapping.getName();
|
||||
Interceptor interceptor = interceptorMapping.getInterceptor();
|
||||
if (interceptor instanceof WithLazyParams) {
|
||||
interceptor = lazyParamInjector.injectParams(interceptor, interceptorMapping.getParams(), invocationContext);
|
||||
@@ -419,7 +418,6 @@ public class DefaultActionInvocation implements ActionInvocation {
|
||||
|
||||
LOG.debug("Executing action method = {}", methodName);
|
||||
|
||||
String timerKey = "invokeAction: " + proxy.getActionName();
|
||||
try {
|
||||
Object methodResult;
|
||||
try {
|
||||
|
||||
Reference in New Issue
Block a user