[java-identity-provider] branch master updated: Remove superfluous generic parameters.
Scott Cantor
cantor.2 at osu.edu
Tue Nov 12 18:30:50 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=41b242d233bff30a891567c6b74ccad36a599e1a
The following commit(s) were added to refs/heads/master by this push:
new 41b242d Remove superfluous generic parameters.
41b242d is described below
commit 41b242d233bff30a891567c6b74ccad36a599e1a
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Tue Nov 12 18:30:46 2019 -0500
Remove superfluous generic parameters.
---
.../main/java/net/shibboleth/idp/profile/impl/ResolveAttributes.java | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/idp-profile-impl/src/main/java/net/shibboleth/idp/profile/impl/ResolveAttributes.java b/idp-profile-impl/src/main/java/net/shibboleth/idp/profile/impl/ResolveAttributes.java
index 922413a..4f2a657 100644
--- a/idp-profile-impl/src/main/java/net/shibboleth/idp/profile/impl/ResolveAttributes.java
+++ b/idp-profile-impl/src/main/java/net/shibboleth/idp/profile/impl/ResolveAttributes.java
@@ -113,8 +113,7 @@ public final class ResolveAttributes extends AbstractProfileAction {
attributeContextCreationStrategy = new ChildContextLookup<>(AttributeContext.class, true).compose(
new ChildContextLookup<>(RelyingPartyContext.class));
- attributesLookupStrategy = FunctionSupport.<ProfileRequestContext,Collection<String>>constant(
- Collections.<String>emptyList());
+ attributesLookupStrategy = FunctionSupport.constant(Collections.emptyList());
maskFailures = true;
createResolutionContext = true;
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list