chore: update the Javadoc example in Analyzer (#12693)

Close #12666
This commit is contained in:
Stéphane Campinas 2023-10-18 16:19:19 +02:00 committed by GitHub
parent 723c05b047
commit 6fde1db228
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ import org.apache.lucene.util.CloseableThreadLocal;
* return new TokenStreamComponents(source, filter);
* }
* {@literal @Override}
* protected TokenStream normalize(TokenStream in) {
* protected TokenStream normalize(String fieldName, TokenStream in) {
* // Assuming FooFilter is about normalization and BarFilter is about
* // stemming, only FooFilter should be applied
* return new FooFilter(in);