[java-identity-provider COMMIT] /trunk/idp-profile-impl/src/main/java/net/shibboleth/idp/profile/logic/RelyingPartyId...

noreply at shibboleth.net noreply at shibboleth.net
Wed Jan 22 23:14:30 EST 2014


Author: scantor
Date: Wed Jan 22 23:14:30 2014
New Revision: 5231

URL: http://svn.shibboleth.net/view/java-identity-provider?rev=5231&view=rev
Log:
Add a "final"

Modified:
    trunk/idp-profile-impl/src/main/java/net/shibboleth/idp/profile/logic/RelyingPartyIdPredicate.java

Modified: trunk/idp-profile-impl/src/main/java/net/shibboleth/idp/profile/logic/RelyingPartyIdPredicate.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-profile-impl/src/main/java/net/shibboleth/idp/profile/logic/RelyingPartyIdPredicate.java?rev=5231&r1=5230&r2=5231&view=diff
==============================================================================
--- trunk/idp-profile-impl/src/main/java/net/shibboleth/idp/profile/logic/RelyingPartyIdPredicate.java (original)
+++ trunk/idp-profile-impl/src/main/java/net/shibboleth/idp/profile/logic/RelyingPartyIdPredicate.java Wed Jan 22 23:14:30 2014
@@ -85,7 +85,7 @@
      * 
      * @param ids   relying party IDs to match against
      */
-    public synchronized void setRelyingPartyIds(@Nonnull @NonnullElements Collection<String> ids) {
+    public synchronized void setRelyingPartyIds(@Nonnull @NonnullElements final Collection<String> ids) {
         ComponentSupport.ifInitializedThrowUnmodifiabledComponentException(this);
         Constraint.isNotNull(ids, "Relying party ID collection cannot be null");
         



More information about the commits mailing list