Code clean-up.

This commit is contained in:
Harald Kuhr 2015-07-08 23:21:13 +02:00
parent 1a43958aeb
commit eef4c72daa

View File

@ -190,7 +190,6 @@ abstract class LZWDecoder implements Decoder {
public static Decoder create(boolean oldBitReversedStream) {
return oldBitReversedStream ? new LZWCompatibilityDecoder() : new LZWSpecDecoder();
// return oldBitReversedStream ? new LZWCompatibilityDecoder() : new LZWTreeDecoder();
}
static final class LZWSpecDecoder extends LZWDecoder {