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:
Isabel Drost-Fromm 2015-06-24 09:39:19 +02:00
parent 3284ec9b55
commit b166259ede
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}