1
0
Fork 0
mirror of https://github.com/geometer/FBReaderJ.git synced 2025-10-06 03:50:19 +02:00

removed debug printings

git-svn-id: https://only.mawhrin.net/repos/FBReaderJ/trunk@992 6a642e6f-84f6-412e-ac94-c4a38d5a04b0
This commit is contained in:
Nikolay Pultsin 2009-06-30 09:15:00 +00:00
parent 4d7ea131fe
commit b9ad96c6cd
4 changed files with 4 additions and 5 deletions

View file

@ -47,7 +47,7 @@ public class NativeDeflatingDecompressor extends AbstractDeflatingDecompressor {
myOutBufferOffset = OUT_BUFFER_SIZE;
myOutBufferLength = 0;
System.err.println(startInflating());
startInflating();
}
@Override
@ -116,7 +116,6 @@ public class NativeDeflatingDecompressor extends AbstractDeflatingDecompressor {
myInBufferLength -= code >> 16;
myOutBufferOffset = 0;
myOutBufferLength = code & 0x0FFFF;
System.err.println(myInBufferLength + ":" + myOutBufferLength + ":" + myAvailable);
}
}