mirror of https://github.com/apache/lucene.git
This commit is contained in:
parent
c041517304
commit
cb5f1b6ca0
|
@ -41,6 +41,7 @@ import org.apache.lucene.analysis.TokenStream;
|
||||||
import org.apache.lucene.analysis.Tokenizer;
|
import org.apache.lucene.analysis.Tokenizer;
|
||||||
import org.apache.lucene.analysis.TokenizerFactory;
|
import org.apache.lucene.analysis.TokenizerFactory;
|
||||||
import org.apache.lucene.analysis.custom.CustomAnalyzer;
|
import org.apache.lucene.analysis.custom.CustomAnalyzer;
|
||||||
|
import org.apache.lucene.analysis.standard.StandardAnalyzer;
|
||||||
import org.apache.lucene.analysis.tokenattributes.CharTermAttribute;
|
import org.apache.lucene.analysis.tokenattributes.CharTermAttribute;
|
||||||
import org.apache.lucene.luke.models.LukeException;
|
import org.apache.lucene.luke.models.LukeException;
|
||||||
import org.apache.lucene.util.AttributeImpl;
|
import org.apache.lucene.util.AttributeImpl;
|
||||||
|
@ -153,11 +154,7 @@ public final class AnalysisImpl implements Analysis {
|
||||||
}
|
}
|
||||||
|
|
||||||
private Analyzer defaultAnalyzer() {
|
private Analyzer defaultAnalyzer() {
|
||||||
try {
|
return new StandardAnalyzer();
|
||||||
return CustomAnalyzer.builder().withTokenizer("standard").build();
|
|
||||||
} catch (IOException e) {
|
|
||||||
throw new LukeException("Failed to build custom analyzer.", e);
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
Loading…
Reference in New Issue