Added @ReplaceBy annotation. (The wimpy man's @Deprecated)
git-svn-id: https://samskivert.googlecode.com/svn/trunk@2904 6335cc39-0255-0410-8fd6-9bcaacd3b74c
This commit is contained in:
@@ -26,12 +26,15 @@ import java.util.List;
|
|||||||
import java.util.NoSuchElementException;
|
import java.util.NoSuchElementException;
|
||||||
import java.util.Random;
|
import java.util.Random;
|
||||||
|
|
||||||
|
import com.samskivert.annotation.ReplacedBy;
|
||||||
|
|
||||||
import static com.samskivert.Log.log;
|
import static com.samskivert.Log.log;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Provides miscellaneous utility routines to simplify obtaining useful random number values and to
|
* Provides miscellaneous utility routines to simplify obtaining useful random number values and to
|
||||||
* centralize seeding and proper care and feeding of the pseudo-random number generator.
|
* centralize seeding and proper care and feeding of the pseudo-random number generator.
|
||||||
*/
|
*/
|
||||||
|
@ReplacedBy("com.samskivert.util.Randoms")
|
||||||
public class RandomUtil
|
public class RandomUtil
|
||||||
{
|
{
|
||||||
/** The random number generator used by the methods in this class. */
|
/** The random number generator used by the methods in this class. */
|
||||||
|
|||||||
Reference in New Issue
Block a user