use fastGet in docset

This commit is contained in:
kimchy 2010-09-10 16:16:45 +03:00
parent 4e661c165a
commit de05a10ae5
1 changed files with 2 additions and 2 deletions

View File

@ -26,7 +26,7 @@ import org.apache.lucene.util.OpenBitSetDISI;
import java.io.IOException;
/**
* @author kimchy (Shay Banon)
* @author kimchy (shay.banon)
*/
public class OpenBitDocSet extends DocSet {
@ -45,7 +45,7 @@ public class OpenBitDocSet extends DocSet {
}
@Override public boolean get(int doc) throws IOException {
return set.get(doc);
return set.fastGet(doc);
}
@Override public DocIdSetIterator iterator() throws IOException {