Just removing a commented out line.

This commit is contained in:
Robert Greene 2008-06-27 18:41:34 +00:00
parent d93c504165
commit aad7071358
2 changed files with 0 additions and 2 deletions

View File

@ -89,7 +89,6 @@ public class NufxLzw1InputStream extends InputStream {
if (bytesLeftInChunk == 0) { // read the chunk header
bytesLeftInChunk = 4096; // NuFX always reads 4096 bytes
lzwStream.clearDictionary(); // Always clear dictionary
// lzwStream.newBuffer();
int length = dataStream.readWord();
int lzwFlag = dataStream.readByte();
int flag = lzwFlag + (length == 4096 ? 0 : 2);

View File

@ -82,7 +82,6 @@ public class NufxLzw2InputStream extends InputStream {
}
if (bytesLeftInChunk == 0) { // read the chunk header
bytesLeftInChunk = 4096; // NuFX always reads 4096 bytes
// lzwStream.newBuffer(); // Allow the LZW stream to do a little housekeeping
lzwStream.clearData(); // Allow the LZW stream to do a little housekeeping
int word = dataStream.readWord();
int length = word & 0x7fff;