Reduced #bitInput() method visibility -- unalign should be used instead outside of package

This commit is contained in:
Collin Smith 2020-08-08 14:24:47 -07:00
parent f7a38d5e15
commit 83ead2a990

View File

@ -30,7 +30,7 @@ public class ByteInput {
*
* @see #unalign()
*/
public BitInput bitInput() {
BitInput bitInput() {
return bitInput != null ? bitInput : (bitInput = new BitInput(this));
}