You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by ca...@apache.org on 2007/02/05 23:13:26 UTC

svn commit: r503898 - /myfaces/tomahawk/trunk/sandbox/core/src/main/java/org/apache/myfaces/validator/ex/LengthValidator.java

Author: cagatay
Date: Mon Feb  5 14:13:25 2007
New Revision: 503898

URL: http://svn.apache.org/viewvc?view=rev&rev=503898
Log:
Overriden getScriptResource

Modified:
    myfaces/tomahawk/trunk/sandbox/core/src/main/java/org/apache/myfaces/validator/ex/LengthValidator.java

Modified: myfaces/tomahawk/trunk/sandbox/core/src/main/java/org/apache/myfaces/validator/ex/LengthValidator.java
URL: http://svn.apache.org/viewvc/myfaces/tomahawk/trunk/sandbox/core/src/main/java/org/apache/myfaces/validator/ex/LengthValidator.java?view=diff&rev=503898&r1=503897&r2=503898
==============================================================================
--- myfaces/tomahawk/trunk/sandbox/core/src/main/java/org/apache/myfaces/validator/ex/LengthValidator.java (original)
+++ myfaces/tomahawk/trunk/sandbox/core/src/main/java/org/apache/myfaces/validator/ex/LengthValidator.java Mon Feb  5 14:13:25 2007
@@ -30,4 +30,8 @@
 		return "tomahawk.LengthValidator(" + getMinimum() + "," + getMaximum() + ")";
 	}
 
+	public String getScriptResource() {
+		return null;
+	}
+
 }