Skip to content

Commit

Permalink
Merge #5553 from 4.1 into 5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
BalusC committed Feb 8, 2025
2 parents b644409 + ab73fe6 commit 95c9988
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
package com.sun.faces.facelets.tag.composite;

import java.util.Collection;
import java.util.Collections;
import java.util.List;
import java.util.Set;

Expand Down Expand Up @@ -44,6 +45,10 @@ public class RetargetedAjaxBehavior extends AjaxBehavior {
private AjaxBehavior retargeted;
private List<String> targetClientIds;

public RetargetedAjaxBehavior() {
this(new AjaxBehavior(), Collections.emptyList());
}

public RetargetedAjaxBehavior(AjaxBehavior retargeted, List<String> targetClientIds) {
this.retargeted = retargeted;
this.targetClientIds = targetClientIds;
Expand Down

0 comments on commit 95c9988

Please sign in to comment.