, 2015 1:18 PM
> To: java-user@lucene.apache.org
> Subject: AW: Lucene 5 : createComponents without reader
>
> Got this one sorted out. I was still referencing the 4.x lucene-analyzers.jar
> which required the reader ;) Sorry for the noise!
>
> -Ursprüngliche Nachricht-
: Lucene 5 : createComponents without reader
My custom Analyzer had the following (Lucene 4) impl of createComponents:
protected TokenStreamComponents createComponents ( final String fieldName,
final Reader reader )
{
Tokenizer source = new
My custom Analyzer had the following (Lucene 4) impl of createComponents:
protected TokenStreamComponents createComponents ( final String fieldName,
final Reader reader )
{
Tokenizer source = new KeywordTokenizer( reader );
TokenStream