Changed access to private

This commit is contained in:
Collin Smith 2020-08-08 11:48:01 -07:00
parent f5ababed84
commit a244fbd09d

View File

@ -37,7 +37,7 @@ public class BitInput {
* Constructs a BitInput instance with an initial state. This is typically
* done when the BitInput is created as the child of another BitInput.
*/
BitInput(ByteInput byteInput, int bitsCached, long cache, long numBits) {
private BitInput(ByteInput byteInput, int bitsCached, long cache, long numBits) {
this.byteInput = byteInput;
this.bitsCached = bitsCached;
this.cache = cache;