[java-plugin-shibd] branch main updated: Don't bother with unused detailedErrors setting.

Codeberg noreply at shibboleth.net
Mon Jul 6 13:06:18 UTC 2026


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

codeberg pushed a commit to branch main
in repository java-plugin-shibd.

View the commit online:
https://codeberg.org/Shibboleth/java-plugin-shibd/commit/467654fa9515a1fe41541fe6405238455afd0494

The following commit(s) were added to refs/heads/main by this push:
     new 467654f  Don't bother with unused detailedErrors setting.
467654f is described below

commit 467654fa9515a1fe41541fe6405238455afd0494
Author: Scott Cantor <scott at restingparrotsoftware.com>
AuthorDate: Mon Jul 6 09:06:05 2026 -0400

    Don't bother with unused detailedErrors setting.
---
 .../main/resources/net/shibboleth/sp/conf/agents-system.xml |  1 -
 .../sp/impl/DelegatingRelyingPartyConfiguration.java        | 13 -------------
 2 files changed, 14 deletions(-)

diff --git a/sp-conf-impl/src/main/resources/net/shibboleth/sp/conf/agents-system.xml b/sp-conf-impl/src/main/resources/net/shibboleth/sp/conf/agents-system.xml
index 38304b3..8a29b29 100644
--- a/sp-conf-impl/src/main/resources/net/shibboleth/sp/conf/agents-system.xml
+++ b/sp-conf-impl/src/main/resources/net/shibboleth/sp/conf/agents-system.xml
@@ -57,7 +57,6 @@
         p:attributeResolver-ref="shibboleth.AttributeResolverService"
         p:attributeFilter-ref="shibboleth.AttributeFilterService"
         p:issuer="#{'%{sp.issuer:}'.trim()}"
-        p:detailedErrorsPredicate="%{sp.errors.detailed:false}"
         p:securityConfiguration-ref="#{'%{sp.security.config:shibboleth.sp.DefaultSecurityConfiguration}'.trim()}"
         p:profileConfigurations="#{getObject('shibboleth.sp.DefaultProfileConfigurations') ?: getObject('VerifiedProfileConfigurations')}"
         p:unverifiedConfiguration-ref="DefaultUnverifiedRelyingPartyConfiguration"
diff --git a/sp-server-impl/src/main/java/net/shibboleth/sp/impl/DelegatingRelyingPartyConfiguration.java b/sp-server-impl/src/main/java/net/shibboleth/sp/impl/DelegatingRelyingPartyConfiguration.java
index 2a7b874..af1d589 100644
--- a/sp-server-impl/src/main/java/net/shibboleth/sp/impl/DelegatingRelyingPartyConfiguration.java
+++ b/sp-server-impl/src/main/java/net/shibboleth/sp/impl/DelegatingRelyingPartyConfiguration.java
@@ -76,19 +76,6 @@ public class DelegatingRelyingPartyConfiguration extends BasicRelyingPartyConfig
         }
     }
 
-    /** {@inheritDoc} */
-    @Override
-    public boolean isDetailedErrors(@Nullable final ProfileRequestContext profileRequestContext) {
-        final boolean flag = super.isDetailedErrors(profileRequestContext);
-        if (flag) {
-            return flag; 
-        } else if (application != null) {
-            return application.isDetailedErrors(profileRequestContext);
-        } else {
-            return false;
-        }
-    }
-
     /** {@inheritDoc} */
     @Override
     @Nullable public SecurityConfiguration getSecurityConfiguration(

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


More information about the commits mailing list