Fix codec name in index header for Lucene94FieldInfosFormat. (#11818)

This commit is contained in:
Adrien Grand 2022-09-26 14:56:30 +02:00 committed by GitHub
parent 6b82be5f11
commit 432296d967
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -373,7 +373,7 @@ public final class Lucene94FieldInfosFormat extends FieldInfosFormat {
static final String EXTENSION = "fnm"; static final String EXTENSION = "fnm";
// Codec header // Codec header
static final String CODEC_NAME = "Lucene90FieldInfos"; static final String CODEC_NAME = "Lucene94FieldInfos";
static final int FORMAT_START = 0; static final int FORMAT_START = 0;
static final int FORMAT_CURRENT = FORMAT_START; static final int FORMAT_CURRENT = FORMAT_START;