KEYCLOAK-15173: Fix bug in SAML11EvidenceType.remove()

This commit is contained in:
testn 2020-08-14 10:47:48 +07:00 committed by Hynek Mlnařík
parent 9c847ab176
commit b392084297

View file

@ -59,7 +59,7 @@ public class SAML11EvidenceType {
} }
public boolean remove(SAML11AssertionType assertion) { public boolean remove(SAML11AssertionType assertion) {
return this.assertions.remove(assertionIDReference); return this.assertions.remove(assertion);
} }
public List<SAML11AssertionType> getAssertions() { public List<SAML11AssertionType> getAssertions() {