File tree Expand file tree Collapse file tree 3 files changed +3
-4
lines changed
main/java/org/elasticsearch/index/translog
test/java/org/elasticsearch/index/translog Expand file tree Collapse file tree 3 files changed +3
-4
lines changed Original file line number Diff line number Diff line change 1717 * under the License.
1818 */
1919
20- package org .elasticsearch .common . util ;
20+ package org .elasticsearch .index . translog ;
2121
2222import org .apache .lucene .util .BitSet ;
2323import org .apache .lucene .util .FixedBitSet ;
2727 * when all bits are set to reduce memory usage. This structure can work well for sequence numbers
2828 * from translog as these numbers are likely to form contiguous ranges (eg. filling all bits).
2929 */
30- public final class CountedBitSet extends BitSet {
30+ final class CountedBitSet extends BitSet {
3131 private short onBits ; // Number of bits are set.
3232 private FixedBitSet bitset ;
3333
Original file line number Diff line number Diff line change 2121
2222import com .carrotsearch .hppc .LongObjectHashMap ;
2323import org .apache .lucene .util .BitSet ;
24- import org .elasticsearch .common .util .CountedBitSet ;
2524import org .elasticsearch .index .seqno .SequenceNumbers ;
2625
2726import java .io .Closeable ;
Original file line number Diff line number Diff line change 1717 * under the License.
1818 */
1919
20- package org .elasticsearch .common . util ;
20+ package org .elasticsearch .index . translog ;
2121
2222import org .apache .lucene .util .FixedBitSet ;
2323import org .elasticsearch .test .ESTestCase ;
You can’t perform that action at this time.
0 commit comments