[ 
http://issues.apache.org/jira/browse/MYFACES-506?page=comments#action_12330137 
] 

Bernd Bohmann commented on MYFACES-506:
---------------------------------------

Please change DateTimeConverter.getAsString()  from 

getAsString() {
...
        DateFormat format = getDateFormat();
        if (_timeZone != null)
        {
            format.setTimeZone(_timeZone);
        }

to

        DateFormat format = getDateFormat();
        TimeZone tz = getTimeZone();
        if (tz  != null)
        {
            format.setTimeZone(tz);
        }


I will add an issue at javaserverfaces.dev.java.net to clarify the spec. 





> DateTimeConverter.getTimeZone should return the default time of the GMT zone 
> by default
> ---------------------------------------------------------------------------------------
>
>          Key: MYFACES-506
>          URL: http://issues.apache.org/jira/browse/MYFACES-506
>      Project: MyFaces
>         Type: Bug
>   Components: JSR-127
>     Versions: 1.0.9m9
>     Reporter: Bruno Aranda
>     Assignee: Bruno Aranda
>      Fix For: 1.1.0

>
> DateTimeConverter.getTimeZone should return the default time of the GMT zone 
> by default, and not null.

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

Reply via email to