blob: 07198f07de678e367531e9592a5d03c2e2c96a49 [file] [log] [blame]
package com.siyeh.igtest.security;
import java.util.Random;
public class UnsecureRandomNumberGenerationInspection
{
public void foo()
{
new Random();
new java.util.Random();
Math.random();
}
}