Added getter for ByteInput ByteBuf for testing

This commit is contained in:
Collin Smith 2020-08-10 18:32:13 -07:00
parent 43b2eda1c6
commit 043e032ec5

View File

@ -56,6 +56,10 @@ public class ByteInput {
return this.bitInput = bitInput;
}
ByteBuf buffer() {
return buffer;
}
public int bytesRead() {
return buffer.readerIndex();
}