You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by us...@apache.org on 2022/09/27 09:09:20 UTC

[lucene] branch branch_9_4 updated: GITHUB-912: fix link to deprecated API in javadocs

This is an automated email from the ASF dual-hosted git repository.

uschindler pushed a commit to branch branch_9_4
in repository https://gitbox.apache.org/repos/asf/lucene.git


The following commit(s) were added to refs/heads/branch_9_4 by this push:
     new 35bd42f55c7 GITHUB-912: fix link to deprecated API in javadocs
35bd42f55c7 is described below

commit 35bd42f55c73ba2178cf107614d04f758b8b8fff
Author: Uwe Schindler <us...@apache.org>
AuthorDate: Mon Sep 26 18:40:28 2022 +0200

    GITHUB-912: fix link to deprecated API in javadocs
---
 lucene/core/src/java/org/apache/lucene/store/MMapDirectory.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lucene/core/src/java/org/apache/lucene/store/MMapDirectory.java b/lucene/core/src/java/org/apache/lucene/store/MMapDirectory.java
index 4cef4b50b49..80517ac00f6 100644
--- a/lucene/core/src/java/org/apache/lucene/store/MMapDirectory.java
+++ b/lucene/core/src/java/org/apache/lucene/store/MMapDirectory.java
@@ -34,7 +34,7 @@ import org.apache.lucene.util.Constants;
  * process equal to the size of the file being mapped. Before using this class, be sure your have
  * plenty of virtual address space, e.g. by using a 64 bit JRE, or a 32 bit JRE with indexes that
  * are guaranteed to fit within the address space. On 32 bit platforms also consult {@link
- * #MMapDirectory(Path, LockFactory, int)} if you have problems with mmap failing because of
+ * #MMapDirectory(Path, LockFactory, long)} if you have problems with mmap failing because of
  * fragmented address space. If you get an OutOfMemoryException, it is recommended to reduce the
  * chunk size, until it works.
  *