Remove debug output

This commit is contained in:
Schmidor 2015-08-13 23:45:38 +02:00
parent 60e3d6e5af
commit d86af8bd82

View File

@ -173,12 +173,10 @@ final class CCITTFaxDecoderStream extends FilterInputStream {
case VALUE_HMODE:
int runLength;
runLength = decodeRun(white ? whiteRunTree : blackRunTree);
System.out.print(runLength + (white? "W" : "B"));
index += runLength;
changesCurrentRow[changesCurrentRowCount++] = index;
runLength = decodeRun(white ? blackRunTree : whiteRunTree);
System.out.print(runLength + (!white? "W" : "B") + ",");
index += runLength;
changesCurrentRow[changesCurrentRowCount++] = index;
break;