Skip to content

Commit

Permalink
KEYCLOAK-14966: Fix SAML11ConditionsType remove() has the wrong argum…
Browse files Browse the repository at this point in the history
…ent type
  • Loading branch information
testn authored and pedroigor committed Aug 6, 2020
1 parent 9200195 commit 1c90576
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ public void addAll(List<SAML11ConditionAbstractType> theConditions) {
this.conditions.addAll(theConditions);
}

public boolean remove(SAML11ConditionsAbstractType condition) {
public boolean remove(SAML11ConditionAbstractType condition) {
return this.conditions.remove(condition);
}

Expand Down

0 comments on commit 1c90576

Please sign in to comment.