Skip to content

Commit

Permalink
Update to Lucene 4.8
Browse files Browse the repository at this point in the history
Closes #30.
(cherry picked from commit bf7cc95)
  • Loading branch information
dadoonet committed Apr 29, 2014
1 parent 0add553 commit d0b89c2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public KuromojiPartOfSpeechFilterFactory(Index index, @IndexSettings Settings in

@Override
public TokenStream create(TokenStream tokenStream) {
return new JapanesePartOfSpeechStopFilter(Version.LUCENE_44, tokenStream, stopTags);
return new JapanesePartOfSpeechStopFilter(Version.LUCENE_48, tokenStream, stopTags);
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ public String name() {

@Override
public TokenStream create(TokenStream tokenStream) {
return new JapanesePartOfSpeechStopFilter(Version.LUCENE_44,
return new JapanesePartOfSpeechStopFilter(Version.LUCENE_48,
tokenStream, JapaneseAnalyzer
.getDefaultStopTags());
}
Expand Down

0 comments on commit d0b89c2

Please sign in to comment.