mirror of
https://github.com/haraldk/TwelveMonkeys.git
synced 2026-03-20 00:00:03 -04:00
Code clean-up.
This commit is contained in:
@@ -190,7 +190,6 @@ abstract class LZWDecoder implements Decoder {
|
|||||||
|
|
||||||
public static Decoder create(boolean oldBitReversedStream) {
|
public static Decoder create(boolean oldBitReversedStream) {
|
||||||
return oldBitReversedStream ? new LZWCompatibilityDecoder() : new LZWSpecDecoder();
|
return oldBitReversedStream ? new LZWCompatibilityDecoder() : new LZWSpecDecoder();
|
||||||
// return oldBitReversedStream ? new LZWCompatibilityDecoder() : new LZWTreeDecoder();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static final class LZWSpecDecoder extends LZWDecoder {
|
static final class LZWSpecDecoder extends LZWDecoder {
|
||||||
|
|||||||
Reference in New Issue
Block a user