[java-identity-provider COMMIT] /trunk/idp-attribute-api/src/main/java/net/shibboleth/idp/attribute/context/Attribute...
noreply at shibboleth.net
noreply at shibboleth.net
Tue Oct 13 16:48:48 EDT 2015
Author: tzeller
Date: Tue Oct 13 16:48:48 2015
New Revision: 7815
URL: http://svn.shibboleth.net/view/java-identity-provider?rev=7815&view=rev
Log:
Add final keyword to method parameters.
Modified:
trunk/idp-attribute-api/src/main/java/net/shibboleth/idp/attribute/context/AttributeContext.java
Modified: trunk/idp-attribute-api/src/main/java/net/shibboleth/idp/attribute/context/AttributeContext.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-attribute-api/src/main/java/net/shibboleth/idp/attribute/context/AttributeContext.java?rev=7815&r1=7814&r2=7815&view=diff
==============================================================================
--- trunk/idp-attribute-api/src/main/java/net/shibboleth/idp/attribute/context/AttributeContext.java (original)
+++ trunk/idp-attribute-api/src/main/java/net/shibboleth/idp/attribute/context/AttributeContext.java Tue Oct 13 16:48:48 2015
@@ -73,7 +73,7 @@
*
* @param newAttributes the attributes
*/
- public void setIdPAttributes(@Nullable @NullableElements Collection<IdPAttribute> newAttributes) {
+ public void setIdPAttributes(@Nullable @NullableElements final Collection<IdPAttribute> newAttributes) {
if (newAttributes == null) {
attributes = Collections.emptyMap();
return;
@@ -108,7 +108,7 @@
*
* @param newAttributes the attributes
*/
- public void setUnfilteredIdPAttributes(@Nullable @NullableElements Collection<IdPAttribute> newAttributes) {
+ public void setUnfilteredIdPAttributes(@Nullable @NullableElements final Collection<IdPAttribute> newAttributes) {
if (null != unfilteredAttributes) {
log.error("Unfiltered attributes have already been set in this flow.");
}
More information about the commits
mailing list