[ 
https://issues.apache.org/jira/browse/DROIDS-101?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12974860#action_12974860
 ] 

Otis Gospodnetic commented on DROIDS-101:
-----------------------------------------

This issue should be marked as Fixed, no?  The change was committed a month ago.


> GaussianRandomDelayTimer misspell
> ---------------------------------
>
>                 Key: DROIDS-101
>                 URL: https://issues.apache.org/jira/browse/DROIDS-101
>             Project: Droids
>          Issue Type: Bug
>          Components: core
>         Environment: org.apache.droids.api.GaussianRandomDelayTimer
>            Reporter: Alexander Zazhigin
>         Attachments: droids-101.diff
>
>   Original Estimate: 0.02h
>  Remaining Estimate: 0.02h
>
> Within GaussianRandomDelayTimer wrong type cast line.
> The line below casts first delay variable which is at the range from 0 to 1 
> to long.
> > return (long) delay * delaySpread + minimumDelay;
> As the result it becomes 0 or 1. This means that only two values produces 
> within the line (delaySpread + minimumDelay) or minimumDelay.
> If you fix the line like below the result will have more sense.
> > return (long) (delay * delaySpread + minimumDelay);

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

Reply via email to