[java-identity-provider COMMIT] /trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/saml2/profile/delegation/i...

noreply at shibboleth.net noreply at shibboleth.net
Mon Jun 29 14:19:46 EDT 2015


Author: scantor
Date: Mon Jun 29 14:19:46 2015
New Revision: 7610

URL: http://svn.shibboleth.net/view/java-identity-provider?rev=7610&view=rev
Log:
Remove redundant type arguments.

Modified:
    trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/saml2/profile/delegation/impl/DecorateDelegatedAssertion.java

Modified: trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/saml2/profile/delegation/impl/DecorateDelegatedAssertion.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/saml2/profile/delegation/impl/DecorateDelegatedAssertion.java?rev=7610&r1=7609&r2=7610&view=diff
==============================================================================
--- trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/saml2/profile/delegation/impl/DecorateDelegatedAssertion.java	(original)
+++ trunk/idp-saml-impl/src/main/java/net/shibboleth/idp/saml/saml2/profile/delegation/impl/DecorateDelegatedAssertion.java	Mon Jun 29 14:19:46 2015
@@ -400,7 +400,7 @@
         }
         if (libertySSOSEndpointURLLookupStrategy != null) {
             libertySSOSEndpointURL = libertySSOSEndpointURLLookupStrategy.apply(
-                    new Pair<ProfileRequestContext,HttpServletRequest>(profileRequestContext, getHttpServletRequest()));
+                    new Pair<>(profileRequestContext, getHttpServletRequest()));
             if (libertySSOSEndpointURL != null) {
                 log.debug("Using Liberty SSOS endpoint URL resolved via strategy: {}", libertySSOSEndpointURL);
                 return;



More information about the commits mailing list