[java-identity-provider] branch main updated: Convert to collection support method.

Codeberg noreply at shibboleth.net
Mon Aug 10 15:32:22 UTC 2026


This is an automated email from the git hooks/post-receive script.

codeberg pushed a commit to branch main
in repository java-identity-provider.

View the commit online:
https://codeberg.org/Shibboleth/java-identity-provider/commit/0f5cb4d5a6de1a92fe8fa99ec453d5293a34506f

The following commit(s) were added to refs/heads/main by this push:
     new 0f5cb4d5a Convert to collection support method.
0f5cb4d5a is described below

commit 0f5cb4d5a6de1a92fe8fa99ec453d5293a34506f
Author: Scott Cantor <scott at restingparrotsoftware.com>
AuthorDate: Mon Aug 10 11:31:38 2026 -0400

    Convert to collection support method.
---
 .../idp/saml/saml2/profile/config/impl/ECPProfileConfiguration.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/saml2/profile/config/impl/ECPProfileConfiguration.java b/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/saml2/profile/config/impl/ECPProfileConfiguration.java
index 15645049e..cd0a167df 100644
--- a/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/saml2/profile/config/impl/ECPProfileConfiguration.java
+++ b/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/saml2/profile/config/impl/ECPProfileConfiguration.java
@@ -81,7 +81,7 @@ public class ECPProfileConfiguration extends BrowserSSOProfileConfiguration
 
         if (events != null && !events.isEmpty()) {
             localEventsLookupStrategy = FunctionSupport.constant(
-                    Set.copyOf(StringSupport.normalizeStringCollection(events)));
+                    CollectionSupport.copyToSet(StringSupport.normalizeStringCollection(events)));
         } else {
             localEventsLookupStrategy = FunctionSupport.constant(null);
         }

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list