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

Darryl Smith (JIRA) jira-events at lists.jboss.org
Tue Jun 26 11:54:58 EDT 2007


    [ http://jira.jboss.com/jira/browse/JBSEAM-1553?page=comments#action_12366885 ] 
            
Darryl Smith commented on JBSEAM-1553:
--------------------------------------

Pages.java:1305

> 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
>
>       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