only set the decoder type if set in the settings

This commit is contained in:
Shay Banon 2012-07-05 23:47:03 +02:00
parent 2328776ec5
commit d844093953
1 changed files with 11 additions and 9 deletions

View File

@ -56,7 +56,8 @@ public class LZFCompressor implements Compressor {
@Override @Override
public void configure(Settings settings) { public void configure(Settings settings) {
String decoderType = settings.get("compress.lzf.decoder", "optimal"); String decoderType = settings.get("compress.lzf.decoder", null);
if (decoderType != null) {
if ("optimal".equalsIgnoreCase(decoderType)) { if ("optimal".equalsIgnoreCase(decoderType)) {
this.decoder = ChunkDecoderFactory.optimalInstance(); this.decoder = ChunkDecoderFactory.optimalInstance();
Loggers.getLogger(LZFCompressor.class).debug("using [{}] decoder", this.decoder.getClass().getSimpleName()); Loggers.getLogger(LZFCompressor.class).debug("using [{}] decoder", this.decoder.getClass().getSimpleName());
@ -67,6 +68,7 @@ public class LZFCompressor implements Compressor {
Loggers.getLogger(LZFCompressor.class).warn("decoder type not recognized [{}], still using [{}]", decoderType, this.decoder.getClass().getSimpleName()); Loggers.getLogger(LZFCompressor.class).warn("decoder type not recognized [{}], still using [{}]", decoderType, this.decoder.getClass().getSimpleName());
} }
} }
}
@Override @Override
public boolean isCompressed(byte[] data, int offset, int length) { public boolean isCompressed(byte[] data, int offset, int length) {