[java-identity-provider] branch main updated: Adjust a nullable variable reference.
Scott Cantor
cantor.2 at osu.edu
Tue Mar 7 15:49:01 UTC 2023
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch main
in repository java-identity-provider.
View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=4734270cc75baa14ae32044d176a979e2c4e0eee
The following commit(s) were added to refs/heads/main by this push:
new 4734270cc Adjust a nullable variable reference.
4734270cc is described below
commit 4734270cc75baa14ae32044d176a979e2c4e0eee
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Tue Mar 7 10:48:57 2023 -0500
Adjust a nullable variable reference.
---
.../idp/saml/profile/impl/PopulateBindingAndEndpointContexts.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/profile/impl/PopulateBindingAndEndpointContexts.java b/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/profile/impl/PopulateBindingAndEndpointContexts.java
index 7ff124439..2d694c1ca 100644
--- a/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/profile/impl/PopulateBindingAndEndpointContexts.java
+++ b/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/profile/impl/PopulateBindingAndEndpointContexts.java
@@ -313,7 +313,7 @@ public class PopulateBindingAndEndpointContexts extends AbstractProfileAction {
final QName et = endpointType;
if (et != null) {
- endpointBuilder = XMLObjectSupport.getBuilder(endpointType);
+ endpointBuilder = XMLObjectSupport.getBuilder(et);
if (endpointBuilder == null) {
throw new ComponentInitializationException("Unable to obtain builder for endpoint type "
+ et);
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list