mirror of https://github.com/apache/lucene.git
fix javadocs warnings
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1074392 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
eeeb300d54
commit
c66172cf3b
|
@ -429,7 +429,7 @@ public class IndexSearcher {
|
|||
* <p>NOTE: this does not compute scores by default. If you
|
||||
* need scores, create a {@link TopFieldCollector}
|
||||
* instance by calling {@link TopFieldCollector#create} and
|
||||
* then pass that to {@link #search(Weight, Filter,
|
||||
* then pass that to {@link #search(IndexReader.AtomicReaderContext[], Weight, Filter,
|
||||
* Collector)}.</p>
|
||||
*/
|
||||
protected TopFieldDocs search(Weight weight, Filter filter, int nDocs,
|
||||
|
@ -475,7 +475,7 @@ public class IndexSearcher {
|
|||
* <p>NOTE: this does not compute scores by default. If you
|
||||
* need scores, create a {@link TopFieldCollector}
|
||||
* instance by calling {@link TopFieldCollector#create} and
|
||||
* then pass that to {@link #search(Weight, Filter,
|
||||
* then pass that to {@link #search(IndexReader.AtomicReaderContext[], Weight, Filter,
|
||||
* Collector)}.</p>
|
||||
*/
|
||||
protected TopFieldDocs search(AtomicReaderContext[] leaves, Weight weight, Filter filter, int nDocs,
|
||||
|
|
|
@ -483,7 +483,7 @@ public class FST<T> {
|
|||
* this changes the provided <code>arc</code> (2nd arg) in-place and returns
|
||||
* it.
|
||||
*
|
||||
* @returns Returns the second argument (<code>arc</code>).
|
||||
* @return Returns the second argument (<code>arc</code>).
|
||||
*/
|
||||
public Arc<T> readFirstTargetArc(Arc<T> follow, Arc<T> arc) throws IOException {
|
||||
//int pos = address;
|
||||
|
|
Loading…
Reference in New Issue