Skip to content

Commit

Permalink
fix format violations
Browse files Browse the repository at this point in the history
  • Loading branch information
russcam committed Aug 22, 2023
1 parent 55526ec commit 79e8fc5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -506,10 +506,7 @@ public List<PreConfiguredTokenFilter> getPreConfiguredTokenFilters() {
PreConfiguredTokenFilter.singleton(
"delimited_termfreq",
false,
input -> new DelimitedTermFrequencyTokenFilter(
input,
DelimitedTermFrequencyTokenFilterFactory.DEFAULT_DELIMITER
)
input -> new DelimitedTermFrequencyTokenFilter(input, DelimitedTermFrequencyTokenFilterFactory.DEFAULT_DELIMITER)
)
);
filters.add(PreConfiguredTokenFilter.singleton("dutch_stem", false, input -> new SnowballFilter(input, new DutchStemmer())));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,4 +43,3 @@ private static char parseDelimiter(Settings settings) throws IllegalArgumentExce
);
}
}

0 comments on commit 79e8fc5

Please sign in to comment.