mirror of
https://github.com/AppleCommander/ShrinkItArchive.git
synced 2025-01-03 01:30:42 +00:00
Just removing a commented out line.
This commit is contained in:
parent
d93c504165
commit
aad7071358
@ -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);
|
||||
|
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user