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/10/02 09:10:08 UTC

[lucene] branch main updated: Fix typo in log message (we only support exactly Java 19)

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

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


The following commit(s) were added to refs/heads/main by this push:
     new 7333f0329b7 Fix typo in log message (we only support exactly Java 19)
7333f0329b7 is described below

commit 7333f0329b74f18fc4adf649abcddf924c338ee4
Author: Uwe Schindler <us...@apache.org>
AuthorDate: Sun Oct 2 11:09:58 2022 +0200

    Fix typo in log message (we only support exactly Java 19)
---
 .../java19/org/apache/lucene/store/MemorySegmentIndexInputProvider.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lucene/core/src/java19/org/apache/lucene/store/MemorySegmentIndexInputProvider.java b/lucene/core/src/java19/org/apache/lucene/store/MemorySegmentIndexInputProvider.java
index f4e9cc844f5..f8ea1625cee 100644
--- a/lucene/core/src/java19/org/apache/lucene/store/MemorySegmentIndexInputProvider.java
+++ b/lucene/core/src/java19/org/apache/lucene/store/MemorySegmentIndexInputProvider.java
@@ -31,7 +31,7 @@ import org.apache.lucene.util.Unwrappable;
 final class MemorySegmentIndexInputProvider implements MMapDirectory.MMapIndexInputProvider {
 
   public MemorySegmentIndexInputProvider() {
-    Logger.getLogger(getClass().getName()).info("Using MemorySegmentIndexInput with Java 19+");
+    Logger.getLogger(getClass().getName()).info("Using MemorySegmentIndexInput with Java 19");
   }
 
   @Override