javadoc fixes

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@990823 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael McCandless 2010-08-30 15:28:45 +00:00
parent e7f171703e
commit c5d2165437
1 changed files with 6 additions and 7 deletions

View File

@ -64,9 +64,8 @@ import java.util.concurrent.atomic.AtomicInteger;
<b>NOTE</b>: as of 2.4, it's possible to open a read-only
IndexReader using the static open methods that accept the
boolean readOnly parameter. Such a reader has better
concurrency as it's not necessary to synchronize on the
isDeleted method. You must specify false if you want to
boolean readOnly parameter. Such a reader may have better
concurrency. You must specify false if you want to
make changes with the resulting IndexReader.
</p>
@ -744,8 +743,8 @@ public abstract class IndexReader implements Cloneable,Closeable {
* <b>NOTE:</b> for performance reasons, this method does not check if the
* requested document is deleted, and therefore asking for a deleted document
* may yield unspecified results. Usually this is not required, however you
* can call {@link #isDeleted(int)} with the requested document ID to verify
* the document is not deleted.
* can test if the doc is deleted by checking the {@link
* Bits} returned from {@link MultiFields#getDeletedDocs}.
*
* @throws CorruptIndexException if the index is corrupt
* @throws IOException if there is a low-level IO error
@ -769,8 +768,8 @@ public abstract class IndexReader implements Cloneable,Closeable {
* <b>NOTE:</b> for performance reasons, this method does not check if the
* requested document is deleted, and therefore asking for a deleted document
* may yield unspecified results. Usually this is not required, however you
* can call {@link #isDeleted(int)} with the requested document ID to verify
* the document is not deleted.
* can test if the doc is deleted by checking the {@link
* Bits} returned from {@link MultiFields#getDeletedDocs}.
*
* @param n Get the document at the <code>n</code><sup>th</sup> position
* @param fieldSelector The {@link FieldSelector} to use to determine what