Make unzipBlock in BlockGunzipper public. #650

Merged
merged 1 commit into from Jun 24, 2016
Jump to file or symbol
Failed to load files and symbols.
+1 −1
Split
@@ -58,7 +58,7 @@ public void setCheckCrcs(final boolean check) {
* @param compressedBlock compressed data starting at offset 0
* @param compressedLength size of compressed data, possibly less than the size of the buffer.
*/
- void unzipBlock(byte[] uncompressedBlock, byte[] compressedBlock, int compressedLength) {
+ public void unzipBlock(byte[] uncompressedBlock, byte[] compressedBlock, int compressedLength) {
try {
ByteBuffer byteBuffer = ByteBuffer.wrap(compressedBlock, 0, compressedLength);
byteBuffer.order(ByteOrder.LITTLE_ENDIAN);