[
https://issues.apache.org/jira/browse/DROIDS-101?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
]
Thorsten Scherler closed DROIDS-101.
------------------------------------
Resolution: Fixed
Committed revision 1052927.
> 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.