[
https://issues.apache.org/jira/browse/TRINIDAD-1407?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Gabrielle Crawford resolved TRINIDAD-1407.
------------------------------------------
Resolution: Fixed
Sometimes the valueExpression's expectedType is just object, so use type
instead.
> DateTimeConverter doesn't convert correctly as per the expectedDataType
> -----------------------------------------------------------------------
>
> Key: TRINIDAD-1407
> URL: https://issues.apache.org/jira/browse/TRINIDAD-1407
> Project: MyFaces Trinidad
> Issue Type: Bug
> Affects Versions: 1.2.10-core
> Reporter: Agam Dass
> Assignee: Matthias Weßendorf
> Priority: Blocker
> Fix For: 1.2.12-core
>
> Attachments: conversion.patch
>
>
> In the
> org.apache.myfaces.trinidadinternal.convert.DateTimeConverter#getAsObject()
> retrieves the date by parsing the String and then it calls
> DateTimeConverter.__typeConvert() to convert this type to the expected type.
> But in the method __typeConvert() it gets the expectedType by calling the
> type instead of getting the expectedType().
> So it should be changed to expression.getExpectedType() instead of
> expression.getType()
> Class : org.apache.myfaces.trinidadinternal.convert.DateTimeConverter
> Method :
> static Object __typeConvert(FacesContext context, Converter converter,
> UIComponent component,
> String strValue, Object
> value)
> Line # 123
> Remove : Class<?> expectedType =
> expression.getType(context.getELContext());
> Add : Class<?> expectedType = expression.getExpectedType();
> ===========================================================================
> This need to be fixed in Trinidad 1.2.10.1 and then forward-port to Trinidad
> 1.2.11.1.
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.