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


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