[ 
https://issues.apache.org/jira/browse/LANG-315?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Henri Yandell closed LANG-315.
------------------------------

       Resolution: Fixed
    Fix Version/s: 2.3

I think this is definitely a bug, and I don't see fixing it being a negative 
thing for existing users. 

svn ci -m "Applying test and fix for LANG-315" src/
Sending        src/java/org/apache/commons/lang/time/StopWatch.java
Sending        src/test/org/apache/commons/lang/time/StopWatchTest.java
Transmitting file data ..
Committed revision 504351.

> StopWatch: suspend() acts as split(), if followed by stop()
> -----------------------------------------------------------
>
>                 Key: LANG-315
>                 URL: https://issues.apache.org/jira/browse/LANG-315
>             Project: Commons Lang
>          Issue Type: Bug
>    Affects Versions: 2.0, 2.1, 2.2
>            Reporter: Horst Gernhardt
>             Fix For: 2.3
>
>         Attachments: LANG-315.patch
>
>
> In my opinion, it is a bug that suspend() acts as split(), if followed by 
> stop(); see below:
>         StopWatch sw = new StopWatch();
>         sw.start();
>         Thread.sleep(1000);
>         sw.suspend();
>         // Time 1 (ok)
>         System.out.println(sw.getTime());
>         Thread.sleep(2000);
>         // Time 1 (again, ok)
>         System.out.println(sw.getTime());
>         sw.resume();
>         Thread.sleep(3000);
>         sw.suspend();
>         // Time 2 (ok)
>         System.out.println(sw.getTime());
>         Thread.sleep(4000);
>         // Time 2 (again, ok)
>         System.out.println(sw.getTime());
>         Thread.sleep(5000);
>         sw.stop();
>         // Time 2 (should be, but is Time 3 => NOT ok)
>         System.out.println(sw.getTime());
> suspend/resume is like a pause, where time counter doesn't continue. So a 
> following stop()-call shouldn't increase the time counter, should it?

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to