KEYCLOAK-15173: Fix bug in SAML11EvidenceType.remove()
This commit is contained in:
parent
9c847ab176
commit
b392084297
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@ public class SAML11EvidenceType {
|
|||
}
|
||||
|
||||
public boolean remove(SAML11AssertionType assertion) {
|
||||
return this.assertions.remove(assertionIDReference);
|
||||
return this.assertions.remove(assertion);
|
||||
}
|
||||
|
||||
public List<SAML11AssertionType> getAssertions() {
|
||||
|
|
Loading…
Reference in a new issue