[
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