From bc47023b3a97beaa8ad6abf8e99cc0e1c2bec294 Mon Sep 17 00:00:00 2001 From: Michael McCandless Date: Mon, 18 Aug 2008 15:58:30 +0000 Subject: [PATCH] fix javadoc warnings in Searcher.java git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@686801 13f79535-47bb-0310-9956-ffa450edef68 --- src/java/org/apache/lucene/search/Searcher.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/java/org/apache/lucene/search/Searcher.java b/src/java/org/apache/lucene/search/Searcher.java index 11f622c84e1..a70615561b3 100644 --- a/src/java/org/apache/lucene/search/Searcher.java +++ b/src/java/org/apache/lucene/search/Searcher.java @@ -34,7 +34,7 @@ public abstract class Searcher implements Searchable { /** Returns the documents matching query. * @throws BooleanQuery.TooManyClauses * @deprecated Hits will be removed in Lucene 3.0. Use - * {@link #search(Query, Filter, int))} instead. + * {@link #search(Query, Filter, int)} instead. */ public final Hits search(Query query) throws IOException { return search(query, (Filter)null); @@ -44,7 +44,7 @@ public abstract class Searcher implements Searchable { * filter. * @throws BooleanQuery.TooManyClauses * @deprecated Hits will be removed in Lucene 3.0. Use - * {@link #search(Query, Filter, int))} instead. + * {@link #search(Query, Filter, int)} instead. */ public Hits search(Query query, Filter filter) throws IOException { return new Hits(this, query, filter); @@ -54,7 +54,7 @@ public abstract class Searcher implements Searchable { * sort. * @throws BooleanQuery.TooManyClauses * @deprecated Hits will be removed in Lucene 3.0. Use - * {@link #search(Query, Filter, int, Sort))} instead. + * {@link #search(Query, Filter, int, Sort)} instead. */ public Hits search(Query query, Sort sort) throws IOException { @@ -65,7 +65,7 @@ public abstract class Searcher implements Searchable { * sorted by sort. * @throws BooleanQuery.TooManyClauses * @deprecated Hits will be removed in Lucene 3.0. Use - * {@link #search(Query, Filter, int, Sort))} instead. + * {@link #search(Query, Filter, int, Sort)} instead. */ public Hits search(Query query, Filter filter, Sort sort) throws IOException { @@ -113,7 +113,7 @@ public abstract class Searcher implements Searchable { * *

Applications should only use this if they need all of the * matching documents. The high-level search API ({@link - * Searcher#search(Query, Filter, int))}) is usually more efficient, as it skips + * Searcher#search(Query, Filter, int)}) is usually more efficient, as it skips * non-high-scoring hits. * * @param query to match documents