mirror of https://github.com/apache/lucene.git
mention that QueryParser is not thread-safe; don't refer to deprecated method in javadoc
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@239737 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
718380d17e
commit
c7c1a6b8c6
|
@ -12,8 +12,8 @@ import org.apache.lucene.search.*;
|
|||
import org.apache.lucene.util.Parameter;
|
||||
|
||||
/**
|
||||
* This class is generated by JavaCC. The only method that clients should need
|
||||
* to call is {@link #parse(String)} or {@link #parse(String, String, Analyzer)}.
|
||||
* This class is generated by JavaCC. The most important method is
|
||||
* {@link #parse(String)}.
|
||||
*
|
||||
* The syntax for query strings is as follows:
|
||||
* A Query is a series of clauses.
|
||||
|
@ -45,6 +45,8 @@ import org.apache.lucene.util.Parameter;
|
|||
* documentation</a>.
|
||||
* </p>
|
||||
*
|
||||
* <p>Note that QueryParser is <em>not</em> thread-safe.</p>
|
||||
*
|
||||
* @author Brian Goetz
|
||||
* @author Peter Halacsy
|
||||
* @author Tatu Saloranta
|
||||
|
|
|
@ -35,8 +35,8 @@ import org.apache.lucene.search.*;
|
|||
import org.apache.lucene.util.Parameter;
|
||||
|
||||
/**
|
||||
* This class is generated by JavaCC. The only method that clients should need
|
||||
* to call is {@link #parse(String)} or {@link #parse(String, String, Analyzer)}.
|
||||
* This class is generated by JavaCC. The most important method is
|
||||
* {@link #parse(String)}.
|
||||
*
|
||||
* The syntax for query strings is as follows:
|
||||
* A Query is a series of clauses.
|
||||
|
@ -68,6 +68,8 @@ import org.apache.lucene.util.Parameter;
|
|||
* documentation</a>.
|
||||
* </p>
|
||||
*
|
||||
* <p>Note that QueryParser is <em>not</em> thread-safe.</p>
|
||||
*
|
||||
* @author Brian Goetz
|
||||
* @author Peter Halacsy
|
||||
* @author Tatu Saloranta
|
||||
|
|
Loading…
Reference in New Issue