You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by dw...@apache.org on 2015/05/21 09:52:07 UTC

svn commit: r1680755 - /lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/util/BitDocIdSet.java

Author: dweiss
Date: Thu May 21 07:52:07 2015
New Revision: 1680755

URL: http://svn.apache.org/r1680755
Log:
JavaDoc correction (FixedBitSet->BitSet).:

Modified:
    lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/util/BitDocIdSet.java

Modified: lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/util/BitDocIdSet.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/util/BitDocIdSet.java?rev=1680755&r1=1680754&r2=1680755&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/util/BitDocIdSet.java (original)
+++ lucene/dev/trunk/lucene/core/src/java/org/apache/lucene/util/BitDocIdSet.java Thu May 21 07:52:07 2015
@@ -34,9 +34,8 @@ public class BitDocIdSet extends DocIdSe
   private final long cost;
 
   /**
-   * Wrap the given {@link FixedBitSet} as a {@link DocIdSet}. The provided
-   * {@link FixedBitSet} should not be modified after having wrapped as a
-   * {@link DocIdSet}.
+   * Wrap the given {@link BitSet} as a {@link DocIdSet}. The provided
+   * {@link BitSet} must not be modified afterwards.
    */
   public BitDocIdSet(BitSet set, long cost) {
     this.set = set;