Skip to content

Commit

Permalink
Make unzipBlock in BlockGunzipper public. (#650)
Browse files Browse the repository at this point in the history
  • Loading branch information
nh13 authored and tfenne committed Jun 24, 2016
1 parent 2e26fe8 commit ec44a54
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/htsjdk/samtools/util/BlockGunzipper.java
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit ec44a54

Please sign in to comment.