[java-identity-provider COMMIT] in /trunk/idp-consent/src/main/java/net/shibboleth/idp/consent: flow/storage/Abstract...
noreply at shibboleth.net
noreply at shibboleth.net
Wed Mar 11 07:17:33 EDT 2015
Author: rdw
Date: Wed Mar 11 07:17:33 2015
New Revision: 7405
URL: http://svn.shibboleth.net/view/java-identity-provider?rev=7405&view=rev
Log:
Checkstyle
Modified:
trunk/idp-consent/src/main/java/net/shibboleth/idp/consent/flow/storage/AbstractConsentIndexedStorageAction.java
trunk/idp-consent/src/main/java/net/shibboleth/idp/consent/logic/AttributeReleaseConsentFunction.java
trunk/idp-consent/src/main/java/net/shibboleth/idp/consent/logic/IsConsentRequiredPredicate.java
trunk/idp-consent/src/main/java/net/shibboleth/idp/consent/logic/MessageSourceConsentFunction.java
trunk/idp-consent/src/main/java/net/shibboleth/idp/consent/storage/CollectionSerializer.java
Modified: trunk/idp-consent/src/main/java/net/shibboleth/idp/consent/flow/storage/AbstractConsentIndexedStorageAction.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-consent/src/main/java/net/shibboleth/idp/consent/flow/storage/AbstractConsentIndexedStorageAction.java?rev=7405&r1=7404&r2=7405&view=diff
==============================================================================
--- trunk/idp-consent/src/main/java/net/shibboleth/idp/consent/flow/storage/AbstractConsentIndexedStorageAction.java (original)
+++ trunk/idp-consent/src/main/java/net/shibboleth/idp/consent/flow/storage/AbstractConsentIndexedStorageAction.java Wed Mar 11 07:17:33 2015
@@ -186,7 +186,7 @@
return Collections.emptyList();
}
- return new ArrayList<String>((Collection<String>) storageRecord.getValue(getStorageKeysSerializer(),
+ return new ArrayList<>((Collection<String>) storageRecord.getValue(getStorageKeysSerializer(),
getStorageContext(), getStorageIndexKey()));
}
Modified: trunk/idp-consent/src/main/java/net/shibboleth/idp/consent/logic/AttributeReleaseConsentFunction.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-consent/src/main/java/net/shibboleth/idp/consent/logic/AttributeReleaseConsentFunction.java?rev=7405&r1=7404&r2=7405&view=diff
==============================================================================
--- trunk/idp-consent/src/main/java/net/shibboleth/idp/consent/logic/AttributeReleaseConsentFunction.java (original)
+++ trunk/idp-consent/src/main/java/net/shibboleth/idp/consent/logic/AttributeReleaseConsentFunction.java Wed Mar 11 07:17:33 2015
@@ -62,7 +62,7 @@
public AttributeReleaseConsentFunction() {
consentContextLookupStrategy = new ChildContextLookup<>(ConsentContext.class, false);
consentFlowDescriptorLookupStrategy =
- new FlowDescriptorLookupFunction<ConsentFlowDescriptor>(ConsentFlowDescriptor.class);
+ new FlowDescriptorLookupFunction<>(ConsentFlowDescriptor.class);
attributeReleaseContextLookupStrategy = new ChildContextLookup<>(AttributeReleaseContext.class, false);
attributeValuesHashFunction = new AttributeValuesHashFunction();
}
Modified: trunk/idp-consent/src/main/java/net/shibboleth/idp/consent/logic/IsConsentRequiredPredicate.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-consent/src/main/java/net/shibboleth/idp/consent/logic/IsConsentRequiredPredicate.java?rev=7405&r1=7404&r2=7405&view=diff
==============================================================================
--- trunk/idp-consent/src/main/java/net/shibboleth/idp/consent/logic/IsConsentRequiredPredicate.java (original)
+++ trunk/idp-consent/src/main/java/net/shibboleth/idp/consent/logic/IsConsentRequiredPredicate.java Wed Mar 11 07:17:33 2015
@@ -55,7 +55,7 @@
public IsConsentRequiredPredicate() {
consentContextLookupStrategy = new ChildContextLookup<>(ConsentContext.class);
consentFlowDescriptorLookupStrategy =
- new FlowDescriptorLookupFunction<ConsentFlowDescriptor>(ConsentFlowDescriptor.class);
+ new FlowDescriptorLookupFunction<>(ConsentFlowDescriptor.class);
}
/**
Modified: trunk/idp-consent/src/main/java/net/shibboleth/idp/consent/logic/MessageSourceConsentFunction.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-consent/src/main/java/net/shibboleth/idp/consent/logic/MessageSourceConsentFunction.java?rev=7405&r1=7404&r2=7405&view=diff
==============================================================================
--- trunk/idp-consent/src/main/java/net/shibboleth/idp/consent/logic/MessageSourceConsentFunction.java (original)
+++ trunk/idp-consent/src/main/java/net/shibboleth/idp/consent/logic/MessageSourceConsentFunction.java Wed Mar 11 07:17:33 2015
@@ -73,7 +73,7 @@
consentKeyLookupStrategy = new RelyingPartyIdLookupFunction();
consentValueMessageCodeSuffix = ".text";
consentFlowDescriptorLookupStrategy =
- new FlowDescriptorLookupFunction<ConsentFlowDescriptor>(ConsentFlowDescriptor.class);
+ new FlowDescriptorLookupFunction<>(ConsentFlowDescriptor.class);
hashFunction = new HashFunction();
localeLookupStrategy = new LocaleLookupFunction();
}
[... 15 lines stripped ...]
More information about the commits
mailing list