[java-opensaml] branch main updated: Fix bug in builder element name.

Scott Cantor cantor.2 at osu.edu
Tue Oct 8 20:44:47 UTC 2024


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

scantor pushed a commit to branch main
in repository java-opensaml.

View the commit online:
http://git.shibboleth.net/view/?p=java-opensaml.git;a=commit;h=a9bb9a030f5cf07a9635c7cbf9f042626f5e2ae6

The following commit(s) were added to refs/heads/main by this push:
     new a9bb9a030 Fix bug in builder element name.
a9bb9a030 is described below

commit a9bb9a030f5cf07a9635c7cbf9f042626f5e2ae6
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Tue Oct 8 16:44:44 2024 -0400

    Fix bug in builder element name.
---
 .../java/org/opensaml/saml/saml2/testing/SAML2ActionTestingSupport.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/opensaml-testing/src/main/java/org/opensaml/saml/saml2/testing/SAML2ActionTestingSupport.java b/opensaml-testing/src/main/java/org/opensaml/saml/saml2/testing/SAML2ActionTestingSupport.java
index aa5337813..aed458edd 100644
--- a/opensaml-testing/src/main/java/org/opensaml/saml/saml2/testing/SAML2ActionTestingSupport.java
+++ b/opensaml-testing/src/main/java/org/opensaml/saml/saml2/testing/SAML2ActionTestingSupport.java
@@ -275,7 +275,7 @@ public class SAML2ActionTestingSupport {
 
         final SAMLObjectBuilder<AttributeValue> valueBuilder = (SAMLObjectBuilder<AttributeValue>)
                 XMLObjectProviderRegistrySupport.getBuilderFactory().<AttributeValue>ensureBuilder(
-                        Attribute.DEFAULT_ELEMENT_NAME);
+                        AttributeValue.DEFAULT_ELEMENT_NAME);
         
         values.forEach(v -> {
             final AttributeValue val = valueBuilder.buildObject();

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


More information about the commits mailing list