mirror of
https://github.com/haraldk/TwelveMonkeys.git
synced 2025-08-03 19:45:28 -04:00
Code clean-up.
This commit is contained in:
parent
1a43958aeb
commit
eef4c72daa
@ -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 {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user