You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by mi...@apache.org on 2016/02/06 10:46:44 UTC

lucene-solr git commit: fix javadoc errors

Repository: lucene-solr
Updated Branches:
  refs/heads/lucene-6835 d2a5c1032 -> 5b4c1d963


fix javadoc errors


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/5b4c1d96
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/5b4c1d96
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/5b4c1d96

Branch: refs/heads/lucene-6835
Commit: 5b4c1d963cc211f7125271eb7735db7d4f70ecdc
Parents: d2a5c10
Author: Mike McCandless <mi...@apache.org>
Authored: Sat Feb 6 04:47:16 2016 -0500
Committer: Mike McCandless <mi...@apache.org>
Committed: Sat Feb 6 04:47:16 2016 -0500

----------------------------------------------------------------------
 .../src/java/org/apache/lucene/util/LuceneTestCase.java          | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/5b4c1d96/lucene/test-framework/src/java/org/apache/lucene/util/LuceneTestCase.java
----------------------------------------------------------------------
diff --git a/lucene/test-framework/src/java/org/apache/lucene/util/LuceneTestCase.java b/lucene/test-framework/src/java/org/apache/lucene/util/LuceneTestCase.java
index 2d1a48b..968c957 100644
--- a/lucene/test-framework/src/java/org/apache/lucene/util/LuceneTestCase.java
+++ b/lucene/test-framework/src/java/org/apache/lucene/util/LuceneTestCase.java
@@ -1271,7 +1271,7 @@ public abstract class LuceneTestCase extends Assert {
     return newDirectory(random());
   }
 
-  /** Like {@link newDirectory} except randomly the {@link VirusCheckingFS} may be installed */
+  /** Like {@link #newDirectory} except randomly the {@link VirusCheckingFS} may be installed */
   public static BaseDirectoryWrapper newMaybeVirusCheckingDirectory() {
     if (random().nextInt(5) == 4) {
       Path path = addVirusChecker(createTempDir());
@@ -1340,7 +1340,7 @@ public abstract class LuceneTestCase extends Assert {
     return newFSDirectory(f, FSLockFactory.getDefault());
   }
 
-  /** Like {@link newFSDirectory(Path)}, but randomly insert {@link VirusCheckingFS} */
+  /** Like {@link #newFSDirectory(Path)}, but randomly insert {@link VirusCheckingFS} */
   public static BaseDirectoryWrapper newMaybeVirusCheckingFSDirectory(Path f) {
     if (random().nextInt(5) == 4) {
       f = addVirusChecker(f);