blob: 6cca20ef395fd1b6177ba2196e48c92605845835 [file] [log] [blame]
package com.siyeh.igtest.performance;
import java.util.Random;
public class RandomDoubleForRandomIntegerInspection {
public int foo()
{
return (int)(new Random().nextDouble() *3.0);
}
}