From 83ead2a990471153ebe429065bbb687fee4ac1f6 Mon Sep 17 00:00:00 2001 From: Collin Smith Date: Sat, 8 Aug 2020 14:24:47 -0700 Subject: [PATCH] Reduced #bitInput() method visibility -- unalign should be used instead outside of package --- core/src/com/riiablo/io/nio/ByteInput.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/com/riiablo/io/nio/ByteInput.java b/core/src/com/riiablo/io/nio/ByteInput.java index 027aa4bb..fde94d70 100644 --- a/core/src/com/riiablo/io/nio/ByteInput.java +++ b/core/src/com/riiablo/io/nio/ByteInput.java @@ -30,7 +30,7 @@ public class ByteInput { * * @see #unalign() */ - public BitInput bitInput() { + BitInput bitInput() { return bitInput != null ? bitInput : (bitInput = new BitInput(this)); }