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:11:01 UTC

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

Author: lukaszlenart
Date: Thu Jan  3 16:11:01 2013
New Revision: 1428430

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

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

Modified: struts/struts2/trunk/xwork-core/src/main/java/com/opensymphony/xwork2/validator/validators/IntRangeFieldValidator.java
URL: http://svn.apache.org/viewvc/struts/struts2/trunk/xwork-core/src/main/java/com/opensymphony/xwork2/validator/validators/IntRangeFieldValidator.java?rev=1428430&r1=1428429&r2=1428430&view=diff
==============================================================================
--- struts/struts2/trunk/xwork-core/src/main/java/com/opensymphony/xwork2/validator/validators/IntRangeFieldValidator.java (original)
+++ struts/struts2/trunk/xwork-core/src/main/java/com/opensymphony/xwork2/validator/validators/IntRangeFieldValidator.java Thu Jan  3 16:11:01 2013
@@ -33,10 +33,11 @@ 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 -->