From 45b4cb516f1d920c690ba7dddcaceb23aa476da9 Mon Sep 17 00:00:00 2001 From: "ray.j.greenwell" Date: Fri, 1 Oct 2010 00:23:51 +0000 Subject: [PATCH] Added @ReplaceBy annotation. (The wimpy man's @Deprecated) git-svn-id: https://samskivert.googlecode.com/svn/trunk@2904 6335cc39-0255-0410-8fd6-9bcaacd3b74c --- src/main/java/com/samskivert/util/RandomUtil.java | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main/java/com/samskivert/util/RandomUtil.java b/src/main/java/com/samskivert/util/RandomUtil.java index 3642a5b8..f9198fd9 100644 --- a/src/main/java/com/samskivert/util/RandomUtil.java +++ b/src/main/java/com/samskivert/util/RandomUtil.java @@ -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. */