Skip to content

Commit

Permalink
WW-5450 Simplifies boolean expression
Browse files Browse the repository at this point in the history
  • Loading branch information
lukaszlenart committed Aug 30, 2024
1 parent b6cffd2 commit f50cb28
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ public void doExecute(String finalLocation, ActionInvocation invocation) throws
}

//if we are inside an action tag, we always need to do an include
Boolean insideActionTag = (Boolean) ObjectUtils.defaultIfNull(request.getAttribute(StrutsStatics.STRUTS_ACTION_TAG_INVOCATION), Boolean.FALSE);
boolean insideActionTag = (Boolean) ObjectUtils.defaultIfNull(request.getAttribute(StrutsStatics.STRUTS_ACTION_TAG_INVOCATION), Boolean.FALSE);

// If we're included, then include the view
// Otherwise do forward
Expand Down

0 comments on commit f50cb28

Please sign in to comment.