[jboss-cvs] jboss-seam/src/main/org/jboss/seam/core ...

Gavin King gavin.king at jboss.com
Tue Jun 19 02:37:48 EDT 2007


  User: gavin   
  Date: 07/06/19 02:37:48

  Modified:    src/main/org/jboss/seam/core  Validators.java
  Log:
  remove obsoelte arg
  
  Revision  Changes    Path
  1.7       +2 -4      jboss-seam/src/main/org/jboss/seam/core/Validators.java
  
  (In the diff below, changes in quantity of whitespace are not shown.)
  
  Index: Validators.java
  ===================================================================
  RCS file: /cvsroot/jboss/jboss-seam/src/main/org/jboss/seam/core/Validators.java,v
  retrieving revision 1.6
  retrieving revision 1.7
  diff -u -b -r1.6 -r1.7
  --- Validators.java	8 May 2007 02:32:17 -0000	1.6
  +++ Validators.java	19 Jun 2007 06:37:48 -0000	1.7
  @@ -6,7 +6,6 @@
   import java.util.HashMap;
   import java.util.Map;
   
  -import javax.faces.context.FacesContext;
   
   import org.hibernate.validator.ClassValidator;
   import org.hibernate.validator.InvalidValue;
  @@ -113,13 +112,12 @@
      /**
       * Validate that a value can be assigned to the property
       * identified by a value expression.
  -    * 
  -    * @param context the FacesContext
       * @param propertyExpression a value expression
       * @param value the value that is to be assigned
  +    * 
       * @return the validation failures, as InvalidValues
       */
  -   public InvalidValue[] validate(FacesContext context, String propertyExpression, Object value)
  +   public InvalidValue[] validate(String propertyExpression, Object value)
      {
         int dot = propertyExpression.lastIndexOf('.');
         int bracket = propertyExpression.lastIndexOf('[');
  
  
  



More information about the jboss-cvs-commits mailing list