You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by us...@apache.org on 2012/02/02 09:09:56 UTC

svn commit: r1239478 - /lucene/dev/trunk/lucene/src/java/org/apache/lucene/index/SlowCompositeReaderWrapper.java

Author: uschindler
Date: Thu Feb  2 08:09:55 2012
New Revision: 1239478

URL: http://svn.apache.org/viewvc?rev=1239478&view=rev
Log:
LUCENE-3733: Remove dead javadocs

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

Modified: lucene/dev/trunk/lucene/src/java/org/apache/lucene/index/SlowCompositeReaderWrapper.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/src/java/org/apache/lucene/index/SlowCompositeReaderWrapper.java?rev=1239478&r1=1239477&r2=1239478&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/src/java/org/apache/lucene/index/SlowCompositeReaderWrapper.java (original)
+++ lucene/dev/trunk/lucene/src/java/org/apache/lucene/index/SlowCompositeReaderWrapper.java Thu Feb  2 08:09:55 2012
@@ -29,20 +29,13 @@ import org.apache.lucene.index.MultiRead
 
 /**
  * This class forces a composite reader (eg a {@link
- * MultiReader} or {@link DirectoryReader} or any other
- * IndexReader subclass that returns non-null from {@link
- * CompositeReader#getSequentialSubReaders}) to emulate an
+ * MultiReader} or {@link DirectoryReader}) to emulate an
  * atomic reader.  This requires implementing the postings
  * APIs on-the-fly, using the static methods in {@link
  * MultiFields}, {@link MultiDocValues}, 
  * by stepping through the sub-readers to merge fields/terms, 
  * appending docs, etc.
  *
- * <p>If you ever hit an UnsupportedOperationException saying
- * "please use MultiXXX.YYY instead", the simple
- * but non-performant workaround is to wrap your reader
- * using this class.</p>
- *
  * <p><b>NOTE</b>: this class almost always results in a
  * performance hit.  If this is important to your use case,
  * it's better to get the sequential sub readers (see {@link