Return-Path: Delivered-To: apmail-lucene-java-commits-archive@www.apache.org Received: (qmail 36080 invoked from network); 15 Sep 2008 19:01:55 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 15 Sep 2008 19:01:55 -0000 Received: (qmail 9486 invoked by uid 500); 15 Sep 2008 19:01:51 -0000 Delivered-To: apmail-lucene-java-commits-archive@lucene.apache.org Received: (qmail 9461 invoked by uid 500); 15 Sep 2008 19:01:51 -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 9451 invoked by uid 99); 15 Sep 2008 19:01:51 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 15 Sep 2008 12:01:51 -0700 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 15 Sep 2008 19:01:01 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id 5C9D12388A02; Mon, 15 Sep 2008 12:01:34 -0700 (PDT) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r695581 - /lucene/java/trunk/src/java/org/apache/lucene/index/IndexWriter.java Date: Mon, 15 Sep 2008 19:01:33 -0000 To: java-commits@lucene.apache.org From: mikemccand@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20080915190134.5C9D12388A02@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: mikemccand Date: Mon Sep 15 12:01:33 2008 New Revision: 695581 URL: http://svn.apache.org/viewvc?rev=695581&view=rev Log: more javadocs fixes Modified: lucene/java/trunk/src/java/org/apache/lucene/index/IndexWriter.java Modified: lucene/java/trunk/src/java/org/apache/lucene/index/IndexWriter.java URL: http://svn.apache.org/viewvc/lucene/java/trunk/src/java/org/apache/lucene/index/IndexWriter.java?rev=695581&r1=695580&r2=695581&view=diff ============================================================================== --- lucene/java/trunk/src/java/org/apache/lucene/index/IndexWriter.java (original) +++ lucene/java/trunk/src/java/org/apache/lucene/index/IndexWriter.java Mon Sep 15 12:01:33 2008 @@ -871,7 +871,7 @@ * read/written to or if there is any other low-level * IO error * @deprecated This constructor will be removed in the 3.0 release. - * Use {@link #IndexWriter(Directory,boolean,Analyzer,MaxFieldLength)} instead. + * Use {@link #IndexWriter(Directory,Analyzer,MaxFieldLength)} instead. */ public IndexWriter(Directory d, boolean autoCommit, Analyzer a) throws CorruptIndexException, LockObtainFailedException, IOException { @@ -931,7 +931,7 @@ * false or if there is any other low-level * IO error * @deprecated This constructor will be removed in the 3.0 release. - * Use {@link #IndexWriter(Directory,boolean,Analyzer,boolean,MaxFieldLength)} instead. + * Use {@link #IndexWriter(Directory,Analyzer,boolean,MaxFieldLength)} instead. */ public IndexWriter(Directory d, boolean autoCommit, Analyzer a, boolean create) throws CorruptIndexException, LockObtainFailedException, IOException { @@ -1010,7 +1010,7 @@ * read/written to or if there is any other low-level * IO error * @deprecated This constructor will be removed in the 3.0 release. - * Use {@link #IndexWriter(Directory,boolean,Analyzer,IndexDeletionPolicy,MaxFieldLength)} instead. + * Use {@link #IndexWriter(Directory,Analyzer,IndexDeletionPolicy,MaxFieldLength)} instead. */ public IndexWriter(Directory d, boolean autoCommit, Analyzer a, IndexDeletionPolicy deletionPolicy) throws CorruptIndexException, LockObtainFailedException, IOException { @@ -1107,7 +1107,7 @@ * false or if there is any other low-level * IO error * @deprecated This constructor will be removed in the 3.0 release. - * Use {@link #IndexWriter(Directory,boolean,Analyzer,boolean,IndexDeletionPolicy,MaxFieldLength)} instead. + * Use {@link #IndexWriter(Directory,Analyzer,boolean,IndexDeletionPolicy,MaxFieldLength)} instead. */ public IndexWriter(Directory d, boolean autoCommit, Analyzer a, boolean create, IndexDeletionPolicy deletionPolicy) throws CorruptIndexException, LockObtainFailedException, IOException {