You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by lu...@apache.org on 2013/01/03 17:12:17 UTC

svn commit: r1428435 - /struts/struts2/trunk/xwork-core/src/main/java/com/opensymphony/xwork2/validator/validators/ShortRangeFieldValidator.java

Author: lukaszlenart
Date: Thu Jan  3 16:12:17 2013
New Revision: 1428435

URL: http://svn.apache.org/viewvc?rev=1428435&view=rev
Log:
Adds additional SNIPPET

Modified:
    struts/struts2/trunk/xwork-core/src/main/java/com/opensymphony/xwork2/validator/validators/ShortRangeFieldValidator.java

Modified: struts/struts2/trunk/xwork-core/src/main/java/com/opensymphony/xwork2/validator/validators/ShortRangeFieldValidator.java
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/xwork-core/src/main/java/com/opensymphony/xwork2/validator/validators/ShortRangeFieldValidator.java?rev=1428435&r1=1428434&r2=1428435&view=diff
==============================================================================
--- struts/struts2/trunk/xwork-core/src/main/java/com/opensymphony/xwork2/validator/validators/ShortRangeFieldValidator.java (original)
+++ struts/struts2/trunk/xwork-core/src/main/java/com/opensymphony/xwork2/validator/validators/ShortRangeFieldValidator.java Thu Jan  3 16:12:17 2013
@@ -33,10 +33,12 @@ package com.opensymphony.xwork2.validato
  *
  * You can either use the min / max value or minExpression / maxExpression (when parse is set to true) -
  * using expression can be slightly slower, see the example below.
- * WARNING! Do not use ${minExpression} and ${maxExpression} as an expression as this will turn into infinitive loop!
- *
  * <!-- END SNIPPET: parameters -->
  *
+ * <!-- START SNIPPET: parameters-warning -->
+ * Do not use ${minExpression} and ${maxExpression} as an expression as this will turn into infinitive loop!
+ * <!-- END SNIPPET: parameters-warning -->
+ *
  * <pre>
  * <!-- START SNIPPET: examples -->
  *  &lt;validators>