[
http://jira.jboss.com/jira/browse/JBSEAM-1355?page=comments#action_12363328 ]
Matt Drees commented on JBSEAM-1355:
------------------------------------
This is what I meant in JBSEAM-1317. I think I must not have been clear enough. I
don't think the problem was actually resolved, even though it was marked as fixed.
ConverterChain.getAsString behaves incorrectly if the input is String
already
-----------------------------------------------------------------------------
Key: JBSEAM-1355
URL:
http://jira.jboss.com/jira/browse/JBSEAM-1355
Project: JBoss Seam
Issue Type: Bug
Components: JSF
Affects Versions: 1.2.1.GA
Reporter: Sergey Koshcheyev
Assigned To: Pete Muir
Fix For: 1.3.1.BETA1
ConverterChain.getAsString(FacesContext context, UIComponent component, Object value)
will return null if value is String already. It should cast the value to String and return
that instead. Proposed fix: change
String output = null;
to
String output = value instanceof String ? (String) value : null;
This happens when UIComponent.value is bound to a String property. In this case no
"final" converter will be added to the chain, so output will be null after the
loop in getAsString.
--
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