Skip to content

Commit

Permalink
Remove final.
Browse files Browse the repository at this point in the history
  • Loading branch information
jepsar committed Dec 10, 2023
1 parent 95a8452 commit 726eccc
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,9 +56,9 @@ public Collection<String> getUnobstrusiveEventNames() {

@Override
public void queueEvent(final FacesEvent event) {
final FacesContext context = getFacesContext();
final Map<String, String> params = context.getExternalContext().getRequestParameterMap();
final String eventName = params.get(Constants.RequestParams.PARTIAL_BEHAVIOR_EVENT_PARAM);
FacesContext context = getFacesContext();
Map<String, String> params = context.getExternalContext().getRequestParameterMap();
String eventName = params.get(Constants.RequestParams.PARTIAL_BEHAVIOR_EVENT_PARAM);

if (eventName != null && event instanceof AjaxBehaviorEvent) {
final AjaxBehaviorEvent ajaxBehaviorEvent = (AjaxBehaviorEvent) event;
Expand Down

0 comments on commit 726eccc

Please sign in to comment.