mirror of https://github.com/apache/lucene.git
FileBasedQueryMaker could add a null Query if the query failed to parse
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1000030 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
9cc4437578
commit
56ff0c11c2
|
@ -73,18 +73,14 @@ public class FileBasedQueryMaker extends AbstractQueryMaker implements QueryMake
|
||||||
BufferedReader buffered = new BufferedReader(reader);
|
BufferedReader buffered = new BufferedReader(reader);
|
||||||
String line = null;
|
String line = null;
|
||||||
int lineNum = 0;
|
int lineNum = 0;
|
||||||
while ((line = buffered.readLine()) != null)
|
while ((line = buffered.readLine()) != null) {
|
||||||
{
|
|
||||||
line = line.trim();
|
line = line.trim();
|
||||||
if (!line.equals("") && !line.startsWith("#"))
|
if (line.length() != 0 && !line.startsWith("#")) {
|
||||||
{
|
|
||||||
Query query = null;
|
|
||||||
try {
|
try {
|
||||||
query = qp.parse(line);
|
qq.add(qp.parse(line));
|
||||||
} catch (ParseException e) {
|
} catch (ParseException e) {
|
||||||
System.err.println("Exception: " + e.getMessage() + " occurred while parsing line: " + lineNum + " Text: " + line);
|
System.err.println("Exception: " + e.getMessage() + " occurred while parsing line: " + lineNum + " Text: " + line);
|
||||||
}
|
}
|
||||||
qq.add(query);
|
|
||||||
}
|
}
|
||||||
lineNum++;
|
lineNum++;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue