Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
*
* Portions Copyrighted 2010-2016 ForgeRock AS.
* Portions Copyrighted 2013 Nomura Research Institute, Ltd
* Portions Copyrighted 2025 3A Systems LLC.
* Portions Copyrighted 2025-2026 3A Systems LLC.
* Portions Copyrighted 2025 OSSTech Corporation
*/

Expand Down Expand Up @@ -1031,9 +1031,10 @@ private static Assertion getAssertion(
id = spEntityID;
}
boolean found = false;
for (NameIDandSPpair nameIDandSPpair : list) {
if (nameIDandSPpair.getSPEntityID().equals(id)) {
for (int i = 0; i < list.size(); i++) {
if (list.get(i).getSPEntityID().equals(id)) {
found = true;
list.set(i, pair);
break;
}
}
Expand Down