Return-Path: Delivered-To: apmail-lucene-java-commits-archive@www.apache.org Received: (qmail 98898 invoked from network); 5 May 2006 21:48:22 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur.apache.org with SMTP; 5 May 2006 21:48:22 -0000 Received: (qmail 42290 invoked by uid 500); 5 May 2006 21:48:21 -0000 Delivered-To: apmail-lucene-java-commits-archive@lucene.apache.org Received: (qmail 42218 invoked by uid 500); 5 May 2006 21:48:20 -0000 Mailing-List: contact java-commits-help@lucene.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: java-dev@lucene.apache.org Delivered-To: mailing list java-commits@lucene.apache.org Received: (qmail 42206 invoked by uid 99); 5 May 2006 21:48:20 -0000 Received: from asf.osuosl.org (HELO asf.osuosl.org) (140.211.166.49) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 05 May 2006 14:48:20 -0700 X-ASF-Spam-Status: No, hits=-9.4 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from [209.237.227.194] (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.29) with SMTP; Fri, 05 May 2006 14:48:20 -0700 Received: (qmail 98816 invoked by uid 65534); 5 May 2006 21:47:59 -0000 Message-ID: <20060505214759.98815.qmail@minotaur.apache.org> Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r400187 - /lucene/java/trunk/src/java/org/apache/lucene/index/IndexReader.java Date: Fri, 05 May 2006 21:47:59 -0000 To: java-commits@lucene.apache.org From: dnaber@apache.org X-Mailer: svnmailer-1.0.8 X-Virus-Checked: Checked by ClamAV on apache.org X-Spam-Rating: minotaur.apache.org 1.6.2 0/1000/N Author: dnaber Date: Fri May 5 14:47:58 2006 New Revision: 400187 URL: http://svn.apache.org/viewcvs?rev=400187&view=rev Log: fix links in javadoc (LUCENE-563); clean up import statements Modified: lucene/java/trunk/src/java/org/apache/lucene/index/IndexReader.java Modified: lucene/java/trunk/src/java/org/apache/lucene/index/IndexReader.java URL: http://svn.apache.org/viewcvs/lucene/java/trunk/src/java/org/apache/lucene/index/IndexReader.java?rev=400187&r1=400186&r2=400187&view=diff ============================================================================== --- lucene/java/trunk/src/java/org/apache/lucene/index/IndexReader.java (original) +++ lucene/java/trunk/src/java/org/apache/lucene/index/IndexReader.java Fri May 5 14:47:58 2006 @@ -29,8 +29,6 @@ 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 @@ /** Implements deletion of the document numbered docNum. - * 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 @@ * 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 */