fix links in javadoc (LUCENE-563); clean up import statements

git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@400187 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Daniel Naber 2006-05-05 21:47:58 +00:00
parent 5deeaa3f10
commit d8d159da77
1 changed files with 2 additions and 4 deletions

View File

@ -29,8 +29,6 @@ import java.io.FileOutputStream;
import java.io.IOException;
import java.util.Arrays;
import java.util.Collection;
import java.util.HashSet;
import java.util.Set;
/** IndexReader is an abstract class, providing an interface for accessing an
index. Search of an index is done entirely through this abstract interface,
@ -520,7 +518,7 @@ public abstract class IndexReader {
/** Implements deletion of the document numbered <code>docNum</code>.
* Applications should call {@link #delete(int)} or {@link #delete(Term)}.
* Applications should call {@link #deleteDocument(int)} or {@link #deleteDocuments(Term)}.
*/
protected abstract void doDelete(int docNum) throws IOException;
@ -530,7 +528,7 @@ public abstract class IndexReader {
* the document. Then to delete such a document, one merely constructs a
* term with the appropriate field and the unique ID string as its text and
* passes it to this method.
* See {@link #delete(int)} for information about when this deletion will
* See {@link #deleteDocument(int)} for information about when this deletion will
* become effective.
* @return the number of documents deleted
*/