All Downloads are FREE. Search and download functionalities are using the official Maven repository.

net.sf.fmj.media.rtp.TrueRandom Maven / Gradle / Ivy

There is a newer version: 1.0.2-jitsi
Show newest version
package net.sf.fmj.media.rtp;

import java.util.*;

public final class TrueRandom
{
    private static final Random random = new Random();

    public static int nextInt()
    {
        return random.nextInt();
    }

    public static long nextLong()
    {
        return random.nextLong();
    }

    public TrueRandom()
    {
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy