fix javadocs

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1133631 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Muir 2011-06-09 02:21:33 +00:00
parent db1d3c2274
commit 557135dd9b
1 changed files with 4 additions and 4 deletions

View File

@ -728,8 +728,8 @@ public abstract class LuceneTestCase extends Assert {
/** /**
* Returns a number of at least <code>i</code> * Returns a number of at least <code>i</code>
* <p> * <p>
* The actual number returned will be influenced by whether {@link TEST_NIGHTLY} * The actual number returned will be influenced by whether {@link #TEST_NIGHTLY}
* is active and {@link RANDOM_MULTIPLIER}, but also with some random fudge. * is active and {@link #RANDOM_MULTIPLIER}, but also with some random fudge.
*/ */
public static int atLeast(Random random, int i) { public static int atLeast(Random random, int i) {
int min = (TEST_NIGHTLY ? 5*i : i) * RANDOM_MULTIPLIER; int min = (TEST_NIGHTLY ? 5*i : i) * RANDOM_MULTIPLIER;
@ -744,8 +744,8 @@ public abstract class LuceneTestCase extends Assert {
/** /**
* Returns true if something should happen rarely, * Returns true if something should happen rarely,
* <p> * <p>
* The actual number returned will be influenced by whether {@link TEST_NIGHTLY} * The actual number returned will be influenced by whether {@link #TEST_NIGHTLY}
* is active and {@link RANDOM_MULTIPLIER}. * is active and {@link #RANDOM_MULTIPLIER}.
*/ */
public static boolean rarely(Random random) { public static boolean rarely(Random random) {
int p = TEST_NIGHTLY ? 25 : 5; int p = TEST_NIGHTLY ? 25 : 5;