Fix SimpleQueryStringBuilder wildcard handling
Forgot to commit the very last change yesterday which led to analyzeWildcard to remain at the default value always. Relates to #11274
This commit is contained in:
parent
3284ec9b55
commit
b166259ede
|
@ -263,7 +263,7 @@ public class SimpleQueryStringBuilder extends AbstractQueryBuilder<SimpleQuerySt
|
|||
|
||||
/** Specifies whether wildcards should be analyzed. Defaults to false. */
|
||||
public SimpleQueryStringBuilder analyzeWildcard(boolean analyzeWildcard) {
|
||||
this.settings.analyzeWildcard(DEFAULT_ANALYZE_WILDCARD);
|
||||
this.settings.analyzeWildcard(analyzeWildcard);
|
||||
return this;
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue