Skip to content
Snippets Groups Projects
Commit 40b60d4d authored by Michael Lee's avatar Michael Lee
Browse files

Merge branch 'bugfix-jan-15' into 'master'

Fix disabling debug issue



See merge request !4
parents ce86ec25 75b5f77d
No related branches found
No related tags found
No related merge requests found
......@@ -608,10 +608,11 @@ public class HuffmanCompressor
public boolean tallyDist(int dist, int len)
{
if (DeflaterConstants.DEBUGGING)
if (DeflaterConstants.DEBUGGING) {
System.err.println("[" + dist + ", " + len + "]");
}
d_buf[last_lit] = (short) dist;
d_buf[last_lit] = (short) dist;
l_buf[last_lit++] = (byte) (len - 3);
int lc = l_code(len-3);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment