[java-opensaml COMMIT] /trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/common/profile/logic/EntityAttributes...
noreply at shibboleth.net
noreply at shibboleth.net
Mon Sep 22 21:51:23 EDT 2014
Author: scantor
Date: Mon Sep 22 21:51:23 2014
New Revision: 4047
URL: http://svn.shibboleth.net/view/java-opensaml?rev=4047&view=rev
Log:
Fix log message, setter name.
Modified:
trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/common/profile/logic/EntityAttributesPredicate.java
Modified: trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/common/profile/logic/EntityAttributesPredicate.java
URL: http://svn.shibboleth.net/view/java-opensaml/trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/common/profile/logic/EntityAttributesPredicate.java?rev=4047&r1=4046&r2=4047&view=diff
==============================================================================
--- trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/common/profile/logic/EntityAttributesPredicate.java (original)
+++ trunk/opensaml-saml-api/src/main/java/org/opensaml/saml/common/profile/logic/EntityAttributesPredicate.java Mon Sep 22 21:51:23 2014
@@ -230,8 +230,8 @@
*
* @param exps the regular expressions to match
*/
- public void setRegexes(@Nonnull @NonnullElements Collection<Pattern> exps) {
- Constraint.isNotNull(exps, "Regular expressions collection cannoe be null");
+ public void setRegexps(@Nonnull @NonnullElements Collection<Pattern> exps) {
+ Constraint.isNotNull(exps, "Regular expressions collection cannot be null");
regexps = Lists.newArrayListWithExpectedSize(exps.size());
regexps.addAll(Collections2.filter(exps, Predicates.notNull()));
}
More information about the commits
mailing list