update to Lucene 9.3

This commit is contained in:
Konstantin Perikov
2022-09-27 21:48:56 +01:00
parent 40fe59dd02
commit 1ecc7aaf9d
6 changed files with 21 additions and 20 deletions

View File

@ -15,12 +15,13 @@
*/
package org.apache.lucene.analysis.morphology;
import org.apache.lucene.analysis.TokenFilterFactory;
import org.apache.lucene.analysis.TokenStream;
import org.apache.lucene.analysis.util.ResourceLoader;
import org.apache.lucene.analysis.util.ResourceLoaderAware;
import org.apache.lucene.analysis.util.TokenFilterFactory;
import org.apache.lucene.morphology.LuceneMorphology;
import org.apache.lucene.morphology.analyzer.MorphologyFilter;
import org.apache.lucene.util.ResourceLoader;
import org.apache.lucene.util.ResourceLoaderAware;
import java.util.Map;
@ -37,7 +38,7 @@ import java.util.Map;
* </analyzer>
* &lt;/fieldType&gt;</pre>
*/
public class MorphologyFilterFactory extends TokenFilterFactory implements ResourceLoaderAware{
public class MorphologyFilterFactory extends TokenFilterFactory implements ResourceLoaderAware {
private static final String LANGUAGE_KEY = "language";

View File

@ -1,12 +1,12 @@
/**
* Copyright 2009 Alexander Kuznetsov
*
* <p>
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* <p>
* http://www.apache.org/licenses/LICENSE-2.0
* <p>
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
@ -15,11 +15,11 @@
*/
package org.apache.lucene.analysis.morphology;
import org.apache.lucene.analysis.util.ClasspathResourceLoader;
import org.apache.lucene.analysis.util.ResourceLoader;
import org.apache.lucene.morphology.LuceneMorphology;
import org.apache.lucene.morphology.english.EnglishLuceneMorphology;
import org.apache.lucene.morphology.russian.RussianLuceneMorphology;
import org.apache.lucene.util.ClasspathResourceLoader;
import org.apache.lucene.util.ResourceLoader;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
@ -34,12 +34,12 @@ public class MorphologyFilterFactoryTest {
private Map<String, String> args;
@Before
public void setUp(){
public void setUp() {
args = new HashMap<>();
}
@Test
public void if_RussianLanguageKey_then_CreateRussianMorphologyFilter(){
public void if_RussianLanguageKey_then_CreateRussianMorphologyFilter() {
args.put(LANGUAGE_KEY, "Russian");
MorphologyFilterFactory morphologyFilterFactory = new MorphologyFilterFactory(args);
@ -51,7 +51,7 @@ public class MorphologyFilterFactoryTest {
}
@Test
public void if_EnglishLanguageKey_then_CreateEnglishMorphologyFilter(){
public void if_EnglishLanguageKey_then_CreateEnglishMorphologyFilter() {
args.put(LANGUAGE_KEY, "English");
MorphologyFilterFactory morphologyFilterFactory = new MorphologyFilterFactory(args);
@ -63,7 +63,7 @@ public class MorphologyFilterFactoryTest {
}
@Test
public void if_NoLanguageKey_then_CreateEnglishMorphologyFilter(){
public void if_NoLanguageKey_then_CreateEnglishMorphologyFilter() {
MorphologyFilterFactory morphologyFilterFactory = new MorphologyFilterFactory(args);
morphologyFilterFactory.inform(loader);