fix warning from javadoc

git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@541944 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Chris M. Hostetter 2007-05-26 22:29:12 +00:00
parent 9f9eedc73a
commit 5680b9436b
1 changed files with 1 additions and 1 deletions

View File

@ -341,7 +341,7 @@ public class SolrIndexSearcher extends Searcher implements SolrInfoMBean {
/** Retrieve a {@link Document} using a {@link org.apache.lucene.document.FieldSelector}
* This method does not currently use the Solr document cache.
*
* @see Searchable#document(int, FieldSelector) */
* @see IndexReader#document(int, FieldSelector) */
public Document doc(int n, FieldSelector fieldSelector) throws IOException {
return searcher.getIndexReader().document(n, fieldSelector);
}