Skip to content

Commit

Permalink
Remove commented out println.
Browse files Browse the repository at this point in the history
  • Loading branch information
klauspost committed Jan 14, 2020
1 parent 490fd07 commit 36b6ed4
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion flate/huffman_bit_writer.go
Original file line number Diff line number Diff line change
Expand Up @@ -628,7 +628,6 @@ func (w *huffmanBitWriter) writeBlockDynamic(tokens *tokens, eof bool, input []b
}
// Check if we get a reasonable size decrease.
if ssize, storable := w.storedSize(input); storable && ssize < (size+size>>4) {
//fmt.Println("store")
w.writeStoredHeader(len(input), eof)
w.writeBytes(input)
w.lastHeader = 0
Expand Down

0 comments on commit 36b6ed4

Please sign in to comment.