donnerpeter commented on code in PR #16359:
URL: https://github.com/apache/lucene/pull/16359#discussion_r3529311843
##########
lucene/analysis/common/src/java/org/apache/lucene/analysis/hunspell/Suggester.java:
##########
@@ -54,20 +55,23 @@ public class Suggester {
private final SuggestibleEntryCache suggestibleCache;
private final FragmentChecker fragmentChecker;
private final boolean proceedPastRep;
+ private final DictionarySuggester suggester;
public Suggester(Dictionary dictionary) {
- this(dictionary, null, FragmentChecker.EVERYTHING_POSSIBLE, false);
+ this(dictionary, null, FragmentChecker.EVERYTHING_POSSIBLE, false, new
Provider());
Review Comment:
nit: Looks unclear. I'd add the outer class name (or still have a lambda).
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]