[java-identity-provider COMMIT] in /trunk/idp-attribute-filter-impl/src/main/java/net/shibboleth/idp/attribute/filter...

noreply at shibboleth.net noreply at shibboleth.net
Fri May 17 10:05:41 EDT 2013


Author: rdw
Date: Fri May 17 10:05:41 2013
New Revision: 4473

URL: http://svn.shibboleth.net/view/java-identity-provider?rev=4473&view=rev
Log:
Fix build.  For some reason MatchFunctor did not get removed in the last commit.

Modified:
    trunk/idp-attribute-filter-impl/src/main/java/net/shibboleth/idp/attribute/filtering/impl/matcher/AbstractRegexpStringMatchFunctor.java
    trunk/idp-attribute-filter-impl/src/main/java/net/shibboleth/idp/attribute/filtering/impl/matcher/MatchFunctor.java
    trunk/idp-attribute-filter-impl/src/main/java/net/shibboleth/idp/attribute/filtering/impl/matcher/MatchFunctor.java.del

Modified: trunk/idp-attribute-filter-impl/src/main/java/net/shibboleth/idp/attribute/filtering/impl/matcher/AbstractRegexpStringMatchFunctor.java
URL: http://svn.shibboleth.net/view/java-identity-provider/trunk/idp-attribute-filter-impl/src/main/java/net/shibboleth/idp/attribute/filtering/impl/matcher/AbstractRegexpStringMatchFunctor.java?rev=4473&r1=4472&r2=4473&view=diff
==============================================================================
--- trunk/idp-attribute-filter-impl/src/main/java/net/shibboleth/idp/attribute/filtering/impl/matcher/AbstractRegexpStringMatchFunctor.java (original)
+++ trunk/idp-attribute-filter-impl/src/main/java/net/shibboleth/idp/attribute/filtering/impl/matcher/AbstractRegexpStringMatchFunctor.java Fri May 17 10:05:41 2013
@@ -19,12 +19,11 @@
 
 import java.util.regex.Pattern;
 
-import net.shibboleth.idp.attribute.filtering.MatchFunctor;
-
 /**
- * General {@link MatchFunctor} for regexp comparison of strings in Attribute Filters.  
+ * General {@link net.shibboleth.idp.attribute.filtering.MatchFunctor} for regexp comparison of strings in Attribute
+ * Filters.
  */
-public abstract class AbstractRegexpStringMatchFunctor extends AbstractValueMatcherFunctor  {
+public abstract class AbstractRegexpStringMatchFunctor extends AbstractValueMatcherFunctor {
 
     /** Regular expression to match. */
     private Pattern regex;
@@ -32,7 +31,7 @@
     /**
      * Gets the regular expression to match.
      * 
-     * @return regular expression to match
+     * @return rsegular expression to match
      */
     public String getRegularExpression() {
         return regex.pattern();
@@ -48,7 +47,7 @@
     }
 
     /**
-     * Matches the given value against the provided regular expression. 
+     * Matches the given value against the provided regular expression.
      * 
      * @param value the value to evaluate
      * 
@@ -65,5 +64,5 @@
 
         return false;
     }
-    
+
 }



More information about the commits mailing list