fix javadoc errors
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 @@
     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 @@
     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);