Metadata based functors.
[shibboleth/sp.git] / shibsp / attribute / filtering / impl / AttributeIssuerRegexFunctor.cpp
index 7c678ab..f342f61 100644 (file)
@@ -17,7 +17,7 @@
 /**
  * AttributeIssuerRegexFunctor.cpp
  * 
- * A match function that evaluates to true if the Attribute issuer matches the provided regular\r
+ * A match function that evaluates to true if the Attribute issuer matches the provided regular
  * expression.
  */
 
@@ -34,7 +34,7 @@ namespace shibsp {
     static const XMLCh regex[] =    UNICODE_LITERAL_5(r,e,g,e,x);
     
     /**
-     * A match function that evaluates to true if the Attribute issuer matches the provided regular\r
+     * A match function that evaluates to true if the Attribute issuer matches the provided regular
      * expression.
      */
     class SHIBSP_DLLLOCAL AttributeIssuerRegexFunctor : public MatchFunctor
@@ -48,10 +48,10 @@ namespace shibsp {
             try {
                 m_regex = new RegularExpression(r, e->getAttributeNS(NULL,options));
             }
-            catch (XMLException& ex) {\r
-                xmltooling::auto_ptr_char temp(ex.getMessage());\r
-                throw ConfigurationException(temp.get());\r
-            }\r
+            catch (XMLException& ex) {
+                xmltooling::auto_ptr_char temp(ex.getMessage());
+                throw ConfigurationException(temp.get());
+            }
         }
 
         virtual ~AttributeIssuerRegexFunctor() {