Revert "HADOOP-16336. finish variable is unused in ZStandardCompressor. Contributed by cxorm."
This reverts commit 076618677d3524187e5be4b5401e25a9ca154230.
This commit is contained in:
parent
54ac80176e
commit
797d14e816
@ -49,7 +49,7 @@ public class ZStandardCompressor implements Compressor {
|
||||
private int uncompressedDirectBufOff = 0, uncompressedDirectBufLen = 0;
|
||||
private boolean keepUncompressedBuf = false;
|
||||
private ByteBuffer compressedDirectBuf = null;
|
||||
private boolean finished;
|
||||
private boolean finish, finished;
|
||||
private long bytesRead = 0;
|
||||
private long bytesWritten = 0;
|
||||
|
||||
@ -180,6 +180,7 @@ public class ZStandardCompressor implements Compressor {
|
||||
|
||||
@Override
|
||||
public void finish() {
|
||||
finish = true;
|
||||
}
|
||||
|
||||
@Override
|
||||
@ -265,6 +266,7 @@ public class ZStandardCompressor implements Compressor {
|
||||
public void reset() {
|
||||
checkStream();
|
||||
init(level, stream);
|
||||
finish = false;
|
||||
finished = false;
|
||||
bytesRead = 0;
|
||||
bytesWritten = 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user