clean code
This commit is contained in:
parent
ac27b45524
commit
0adb2edba2
|
@ -64,7 +64,6 @@ public class LzfCompressor implements Compressor {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override public String decompressString(byte[] value) throws IOException {
|
@Override public String decompressString(byte[] value) throws IOException {
|
||||||
CompressHolder ch = Cached.cached();
|
|
||||||
byte[] result = decompress(value);
|
byte[] result = decompress(value);
|
||||||
return Unicode.fromBytes(result, 0, result.length);
|
return Unicode.fromBytes(result, 0, result.length);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue