[jbossseam-issues] [JBoss JIRA] Closed: (JBSEAM-1553) Parsing pages.xml creates null ValidatorValueExpression

Gavin King (JIRA) jira-events at lists.jboss.org
Tue Jun 26 12:54:57 EDT 2007


     [ http://jira.jboss.com/jira/browse/JBSEAM-1553?page=all ]

Gavin King closed JBSEAM-1553.
------------------------------

    Fix Version/s: 1.3.0.BETA1
       Resolution: Done
         Assignee: Gavin King

thanks.

> Parsing pages.xml creates null ValidatorValueExpression
> -------------------------------------------------------
>
>                 Key: JBSEAM-1553
>                 URL: http://jira.jboss.com/jira/browse/JBSEAM-1553
>             Project: JBoss Seam
>          Issue Type: Bug
>          Components: Core
>            Reporter: Darryl Smith
>         Assigned To: Gavin King
>             Fix For: 1.3.0.BETA1
>
>
>       String validatorExpression = element.attributeValue("validator");
>       if (converterExpression!=null)
>       {
>          param.setValidatorValueExpression(Expressions.instance().createValueExpression(validatorExpression));
>       }
> should be
>       String validatorExpression = element.attributeValue("validator");
>       if (validatorExpression!=null)
>       {
>          param.setValidatorValueExpression(Expressions.instance().createValueExpression(validatorExpression));
>       }

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://jira.jboss.com/jira/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira

        



More information about the seam-issues mailing list