KEYCLOAK-14966: Fix SAML11ConditionsType remove() has the wrong argument type

This commit is contained in:
testn 2020-07-31 11:27:00 +07:00 committed by Pedro Igor
parent 9200195f25
commit 1c905761e6

View file

@ -45,7 +45,7 @@ public class SAML11ConditionsType extends CommonConditionsType {
this.conditions.addAll(theConditions);
}
public boolean remove(SAML11ConditionsAbstractType condition) {
public boolean remove(SAML11ConditionAbstractType condition) {
return this.conditions.remove(condition);
}