[java-identity-provider] branch master updated: Shorten conditional expression.
Scott Cantor
cantor.2 at osu.edu
Tue Jan 15 19:55:33 EST 2019
This is an automated email from the git hooks/post-receive script.
scantor pushed a commit to branch master
in repository java-identity-provider.
View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=6b79cf375637adc8bb4fabbcf8241e45bce42590
The following commit(s) were added to refs/heads/master by this push:
new 6b79cf3 Shorten conditional expression.
6b79cf3 is described below
commit 6b79cf375637adc8bb4fabbcf8241e45bce42590
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Tue Jan 15 19:55:27 2019 -0500
Shorten conditional expression.
---
.../src/main/resources/system/flows/saml/saml2/sso-abstract-beans.xml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/idp-conf/src/main/resources/system/flows/saml/saml2/sso-abstract-beans.xml b/idp-conf/src/main/resources/system/flows/saml/saml2/sso-abstract-beans.xml
index 8fd12b5..047856f 100644
--- a/idp-conf/src/main/resources/system/flows/saml/saml2/sso-abstract-beans.xml
+++ b/idp-conf/src/main/resources/system/flows/saml/saml2/sso-abstract-beans.xml
@@ -49,7 +49,7 @@
<bean id="ProcessRequestedAuthnContext"
class="net.shibboleth.idp.saml.saml2.profile.impl.ProcessRequestedAuthnContext" scope="prototype"
- p:ignoredContexts-ref="#{getObject('shibboleth.IgnoredContexts') != null ? 'shibboleth.IgnoredContexts' : 'shibboleth.DefaultIgnoredContexts'}" />
+ p:ignoredContexts="#{getObject('shibboleth.IgnoredContexts') ?: getObject('shibboleth.DefaultIgnoredContexts') }" />
<bean id="ExtractProxiedRequesters"
class="net.shibboleth.idp.profile.impl.WebFlowMessageHandlerAdaptor" scope="prototype"
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list