Back out modification to setSubstringQuery()

This commit is contained in:
esaunders 2017-03-01 16:31:21 -05:00
parent e6574df547
commit 3fc37113ef

View File

@ -89,7 +89,7 @@ class LuceneQuery implements KeywordSearchQuery {
public void setSubstringQuery() {
// Note that this is not a full substring search. Normally substring
// searches will be done with TermComponentQuery objects instead.
keywordStringEscaped = "*" + keywordStringEscaped + "*";
keywordStringEscaped = keywordStringEscaped + "*";
}
@Override