You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by mg...@apache.org on 2010/12/22 09:31:24 UTC

svn commit: r1051786 - /wicket/branches/wicket-1.4.x/wicket-extensions/src/main/java/org/apache/wicket/extensions/validation/validator/RfcCompliantEmailAddressValidator.java

Author: mgrigorov
Date: Wed Dec 22 08:31:23 2010
New Revision: 1051786

URL: http://svn.apache.org/viewvc?rev=1051786&view=rev
Log:
Merge from 1.5:

Author: ivaynberg
Date: Tue Dec 21 20:48:33 2010
New Revision: 1051643

URL: http://svn.apache.org/viewvc?rev=1051643&view=rev
Log:
javadoc tweak


Modified:
    wicket/branches/wicket-1.4.x/wicket-extensions/src/main/java/org/apache/wicket/extensions/validation/validator/RfcCompliantEmailAddressValidator.java

Modified: wicket/branches/wicket-1.4.x/wicket-extensions/src/main/java/org/apache/wicket/extensions/validation/validator/RfcCompliantEmailAddressValidator.java
URL: http://svn.apache.org/viewvc/wicket/branches/wicket-1.4.x/wicket-extensions/src/main/java/org/apache/wicket/extensions/validation/validator/RfcCompliantEmailAddressValidator.java?rev=1051786&r1=1051785&r2=1051786&view=diff
==============================================================================
--- wicket/branches/wicket-1.4.x/wicket-extensions/src/main/java/org/apache/wicket/extensions/validation/validator/RfcCompliantEmailAddressValidator.java (original)
+++ wicket/branches/wicket-1.4.x/wicket-extensions/src/main/java/org/apache/wicket/extensions/validation/validator/RfcCompliantEmailAddressValidator.java Wed Dec 22 08:31:23 2010
@@ -27,13 +27,9 @@ import org.apache.wicket.validation.vali
 /**
  * Validator for validating email addresses according to the RFC 822. This validator uses the
  * regular expression taken from the Perl implementation of RFC 822.
- * 
- * <p>
- * <b>PLEATE NOTE!</b> Only use this validator if you really need it. The regex used is very big and
- * allocates 1-2Kb of memory per session.
- * 
  * <p>
  * Most users will be satisfied with the {@link EmailAddressValidator}
+ * </p>
  * 
  * @see <a href="http://www.ex-parrot.com/~pdw/Mail-RFC822-Address.html">Perl Regex implementation *
  *      of RFC 822< /a>