mirror of
https://github.com/haraldk/TwelveMonkeys.git
synced 2025-08-04 20:15:28 -04:00
Remove debug output
This commit is contained in:
parent
60e3d6e5af
commit
d86af8bd82
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user