Skip to content

Commit

Permalink
Fix SimpleQueryStringBuilder wildcard handling
Browse files Browse the repository at this point in the history
Forgot to commit the very last change yesterday which led to analyzeWildcard to remain at the default value always.

Relates to #11274
  • Loading branch information
Isabel Drost-Fromm committed Jun 24, 2015
1 parent 3284ec9 commit b166259
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -263,7 +263,7 @@ public boolean lenient() {

/** 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;
}

Expand Down

0 comments on commit b166259

Please sign in to comment.