Mark Miller wrote:
This is either a bug (its meant to be something else) or a harmless
mistake - someone check it out?

    // set setMultiTermRewriteMethod for WildcardQueryNode and
PrefixWildcardQueryNode
if (node instanceof WildcardQueryNode || node instanceof ParametricRangeQueryNode
        || node instanceof ParametricRangeQueryNode) {

repeated ||

It is harmless,

The IF condition should be:

if (node instanceof WildcardQueryNode || node instanceof ParametricRangeQueryNode)


--
-Lafa



---------------------------------------------------------------------
To unsubscribe, e-mail: java-dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: java-dev-h...@lucene.apache.org

Reply via email to