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:
ray.j.greenwell
2010-10-01 00:23:51 +00:00
parent c917825410
commit 45b4cb516f
@@ -26,12 +26,15 @@ import java.util.List;
import java.util.NoSuchElementException;
import java.util.Random;
import com.samskivert.annotation.ReplacedBy;
import static com.samskivert.Log.log;
/**
* 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.
*/
@ReplacedBy("com.samskivert.util.Randoms")
public class RandomUtil
{
/** The random number generator used by the methods in this class. */