- 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:
Otis Gospodnetic 2003-02-23 07:02:10 +00:00
parent 2226d9fa8e
commit 9699a29da4
1 changed files with 3 additions and 2 deletions

View File

@ -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;