From a244fbd09d5e59e6fcf5e7de0ddf385a37fe5cc5 Mon Sep 17 00:00:00 2001 From: Collin Smith Date: Sat, 8 Aug 2020 11:48:01 -0700 Subject: [PATCH] Changed access to private --- core/src/com/riiablo/io/nio/BitInput.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/com/riiablo/io/nio/BitInput.java b/core/src/com/riiablo/io/nio/BitInput.java index 2c7346a8..e6b94682 100644 --- a/core/src/com/riiablo/io/nio/BitInput.java +++ b/core/src/com/riiablo/io/nio/BitInput.java @@ -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;