[
https://issues.apache.org/jira/browse/LANG-346?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel#action_12518582
]
davemeikle edited comment on LANG-346 at 8/8/07 5:18 PM:
----------------------------------------------------------
Yeah, that looks good - I totally agree with the < Calendar.SECOND bit. Now I
see it, I am wondering why I didn't too that ;-)
Cheers,
Dave
was (Author: davemeikle):
Yeah, that looks good - i totally agree with the < Calendar.SECOND bit. Now
I see it, I am wondering why I didn't too that ;-)
Cheers,
Dave
> Dates.round() behaves incorrectly for minutes and seconds
> ---------------------------------------------------------
>
> Key: LANG-346
> URL: https://issues.apache.org/jira/browse/LANG-346
> Project: Commons Lang
> Issue Type: Bug
> Affects Versions: 2.2, 2.3
> Reporter: Ken Dombeck
> Assignee: Henri Yandell
> Fix For: 2.3.1
>
> Attachments: LANG-346-fix.patch, LANG-346.patch
>
>
> Get unexpected output for rounding by minutes or seconds.
> public void testRound()
> {
> Calendar testCalendar = Calendar.getInstance(TimeZone.getTimeZone("GMT"));
> testCalendar.set(2007, 6, 2, 8, 9, 50);
> Date date = testCalendar.getTime();
> System.out.println("Before round() " + date);
> System.out.println("After round() " + DateUtils.round(date,
> Calendar.MINUTE));
> }
> --2.1 produces
> Before round() Mon Jul 02 03:09:50 CDT 2007
> After round() Mon Jul 02 03:10:00 CDT 2007 -- this is what I would expect
> --2.2 and 2.3 produces
> Before round() Mon Jul 02 03:09:50 CDT 2007
> After round() Mon Jul 02 03:01:00 CDT 2007 -- this appears to be wrong
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.