Return-Path: Delivered-To: apmail-jakarta-lucene-dev-archive@www.apache.org Received: (qmail 15082 invoked from network); 4 Jan 2005 19:25:13 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (209.237.227.199) by minotaur-2.apache.org with SMTP; 4 Jan 2005 19:25:13 -0000 Received: (qmail 62953 invoked by uid 500); 4 Jan 2005 19:25:05 -0000 Delivered-To: apmail-jakarta-lucene-dev-archive@jakarta.apache.org Received: (qmail 62929 invoked by uid 500); 4 Jan 2005 19:25:05 -0000 Mailing-List: contact lucene-dev-help@jakarta.apache.org; run by ezmlm Precedence: bulk List-Unsubscribe: List-Subscribe: List-Help: List-Post: List-Id: "Lucene Developers List" Reply-To: "Lucene Developers List" Delivered-To: mailing list lucene-dev@jakarta.apache.org Received: (qmail 62896 invoked by uid 500); 4 Jan 2005 19:25:04 -0000 Received: (qmail 62887 invoked by uid 99); 4 Jan 2005 19:25:04 -0000 X-ASF-Spam-Status: No, hits=-9.8 required=10.0 tests=ALL_TRUSTED,NO_REAL_NAME X-Spam-Check-By: apache.org Received: from minotaur.apache.org (HELO minotaur.apache.org) (209.237.227.194) by apache.org (qpsmtpd/0.28) with SMTP; Tue, 04 Jan 2005 11:25:03 -0800 Received: (qmail 14997 invoked by uid 1912); 4 Jan 2005 19:25:01 -0000 Date: 4 Jan 2005 19:25:01 -0000 Message-ID: <20050104192501.14996.qmail@minotaur.apache.org> From: dnaber@apache.org To: jakarta-lucene-cvs@apache.org Subject: cvs commit: jakarta-lucene/src/java/org/apache/lucene/index MultiReader.java IndexReader.java X-Virus-Checked: Checked X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N dnaber 2005/01/04 11:25:01 Modified: src/java/org/apache/lucene/index MultiReader.java IndexReader.java Log: fixing some deprecated/see tags in the javadoc comments Revision Changes Path 1.12 +2 -2 jakarta-lucene/src/java/org/apache/lucene/index/MultiReader.java Index: MultiReader.java =================================================================== RCS file: /home/cvs/jakarta-lucene/src/java/org/apache/lucene/index/MultiReader.java,v retrieving revision 1.11 retrieving revision 1.12 diff -u -r1.11 -r1.12 --- MultiReader.java 29 Dec 2004 21:35:45 -0000 1.11 +++ MultiReader.java 4 Jan 2005 19:25:01 -0000 1.12 @@ -247,7 +247,7 @@ } /** - * @see IndexReader#getFieldNames(IndexReader.FieldNames fldOption) + * @see IndexReader#getFieldNames(IndexReader.FieldOption) */ public Collection getFieldNames (IndexReader.FieldOption fieldNames) { // maintain a unique set of field names 1.43 +5 -5 jakarta-lucene/src/java/org/apache/lucene/index/IndexReader.java Index: IndexReader.java =================================================================== RCS file: /home/cvs/jakarta-lucene/src/java/org/apache/lucene/index/IndexReader.java,v retrieving revision 1.42 retrieving revision 1.43 diff -u -r1.42 -r1.43 --- IndexReader.java 29 Dec 2004 21:35:45 -0000 1.42 +++ IndexReader.java 4 Jan 2005 19:25:01 -0000 1.43 @@ -574,7 +574,7 @@ * @return Collection of Strings indicating the names of the fields * @throws IOException if there is a problem with accessing the index * - * @deprecated Replaced by {@link #getFieldNames (IndexReader.FieldOption fldOption)} + * @deprecated Replaced by {@link #getFieldNames(IndexReader.FieldOption)} */ public abstract Collection getFieldNames() throws IOException; @@ -587,7 +587,7 @@ * @return Collection of Strings indicating the names of the fields * @throws IOException if there is a problem with accessing the index * - * @deprecated Replaced by {@link #getFieldNames (IndexReader.FieldOption fldOption)} + * @deprecated Replaced by {@link #getFieldNames(IndexReader.FieldOption)} */ public abstract Collection getFieldNames(boolean indexed) throws IOException; @@ -597,7 +597,7 @@ * else only indexed fields without term vector info * @return Collection of Strings indicating the names of the fields * - * @deprecated Replaced by {@link #getFieldNames (IndexReader.FieldOption fldOption)} + * @deprecated Replaced by {@link #getFieldNames(IndexReader.FieldOption)} */ public Collection getIndexedFieldNames(boolean storedTermVector){ if(storedTermVector){ @@ -619,7 +619,7 @@ * @param tvSpec specifies which term vector information should be available for the fields * @return Collection of Strings indicating the names of the fields * - * @deprecated Replaced by {@link #getFieldNames (IndexReader.FieldOption fldOption)} + * @deprecated Replaced by {@link #getFieldNames(IndexReader.FieldOption)} */ public abstract Collection getIndexedFieldNames(Field.TermVector tvSpec); --------------------------------------------------------------------- To unsubscribe, e-mail: lucene-dev-unsubscribe@jakarta.apache.org For additional commands, e-mail: lucene-dev-help@jakarta.apache.org