mirror of https://github.com/apache/lucene.git
- Made byte[] bits array private.
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@149948 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
2226d9fa8e
commit
9699a29da4
|
@ -55,6 +55,7 @@ package org.apache.lucene.util;
|
|||
*/
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
import org.apache.lucene.store.Directory;
|
||||
import org.apache.lucene.store.InputStream;
|
||||
import org.apache.lucene.store.OutputStream;
|
||||
|
@ -68,8 +69,8 @@ import org.apache.lucene.store.OutputStream;
|
|||
</UL>
|
||||
*/
|
||||
public final class BitVector {
|
||||
/** This is public just so that methods will inline. Please don't touch.*/
|
||||
public byte[] bits;
|
||||
|
||||
private byte[] bits;
|
||||
private int size;
|
||||
private int count = -1;
|
||||
|
||||
|
|
Loading…
Reference in New Issue