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

Fix disabling debug issue

parent 21674cb3
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