Cleans up code

This commit is contained in:
Lukasz Lenart
2019-11-13 08:43:49 +01:00
parent 0012dad94c
commit c6bf6ed4d4
@@ -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 {