[jira] Created: (SOLR-601) protected QParser.parse() and subclasses

2008-06-17 Thread Julien Piquot (JIRA)
Reporter: Julien Piquot : As QParser.parse is protected and QParser.subQuery is public, everything : works fine when I run parse() myself (through unit tests). But when I : try to run it through a Solr server, I get : all of the concrete impls of QParser in the solr code base declare the

protected QParser.parse() and subclasses

2008-06-16 Thread Julien PIQUOT
Hi everyone, I have the following class : package org.apache.solr.search; class MyQParser extends QParser { protected Query parse() { // do stuff Query q = subQuery(qs, QParserPlugin.DEFAULT_QTYPE).parse(); // do stuff } } As QParser.parse is protec