You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by rm...@apache.org on 2012/04/23 04:30:35 UTC

svn commit: r1329033 - /lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/index/IndexWriterConfig.java

Author: rmuir
Date: Mon Apr 23 02:30:35 2012
New Revision: 1329033

URL: http://svn.apache.org/viewvc?rev=1329033&view=rev
Log:
don't link to pkg-private method

Modified:
    lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/index/IndexWriterConfig.java

Modified: lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/index/IndexWriterConfig.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/index/IndexWriterConfig.java?rev=1329033&r1=1329032&r2=1329033&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/index/IndexWriterConfig.java (original)
+++ lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/index/IndexWriterConfig.java Mon Apr 23 02:30:35 2012
@@ -589,11 +589,11 @@ public final class IndexWriterConfig imp
   /** By default, IndexWriter does not pool the
    *  SegmentReaders it must open for deletions and
    *  merging, unless a near-real-time reader has been
-   *  obtained by calling {@link IndexWriter#getReader}.
+   *  obtained by calling {@link DirectoryReader#open(IndexWriter, boolean)}.
    *  This method lets you enable pooling without getting a
    *  near-real-time reader.  NOTE: if you set this to
    *  false, IndexWriter will still pool readers once
-   *  {@link IndexWriter#getReader} is called.
+   *  {@link DirectoryReader#open(IndexWriter, boolean)} is called.
    *
    * <p>Only takes effect when IndexWriter is first created. */
   public IndexWriterConfig setReaderPooling(boolean readerPooling) {
@@ -602,7 +602,7 @@ public final class IndexWriterConfig imp
   }
 
   /** Returns true if IndexWriter should pool readers even
-   *  if {@link IndexWriter#getReader} has not been called. */
+   *  if {@link DirectoryReader#open(IndexWriter, boolean)} has not been called. */
   public boolean getReaderPooling() {
     return readerPooling;
   }
@@ -623,7 +623,7 @@ public final class IndexWriterConfig imp
   /** Sets the termsIndexDivisor passed to any readers that
    *  IndexWriter opens, for example when applying deletes
    *  or creating a near-real-time reader in {@link
-   *  IndexWriter#getReader}. If you pass -1, the terms index 
+   *  DirectoryReader#open(IndexWriter, boolean)}. If you pass -1, the terms index 
    *  won't be loaded by the readers. This is only useful in 
    *  advanced situations when you will only .next() through 
    *  all terms; attempts to seek will hit an exception.