aboutsummaryrefslogtreecommitdiffstats
path: root/util/stream/zlib.cpp
diff options
context:
space:
mode:
authoraosipenko <aosipenko@yandex-team.ru>2022-02-10 16:48:08 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:48:08 +0300
commit69e3c43df1c96bc2ac8946bf4dfb1f5fc438ff7f (patch)
treeb222e5ac2e2e98872661c51ccceee5da0d291e13 /util/stream/zlib.cpp
parent948fd24d47d4b3b7815aaef1686aea00ef3f4288 (diff)
downloadydb-69e3c43df1c96bc2ac8946bf4dfb1f5fc438ff7f.tar.gz
Restoring authorship annotation for <aosipenko@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'util/stream/zlib.cpp')
-rw-r--r--util/stream/zlib.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/util/stream/zlib.cpp b/util/stream/zlib.cpp
index 958be7af2c..60f4e9439f 100644
--- a/util/stream/zlib.cpp
+++ b/util/stream/zlib.cpp
@@ -171,7 +171,7 @@ namespace {
}
~TDecompressStream() override = default;
-
+
private:
size_t DoNext(const void** ptr, size_t len) override {
void* buf = AdditionalData();
@@ -364,7 +364,7 @@ void TZLibCompress::DoWrite(const void* buf, size_t size) {
}
void TZLibCompress::DoFlush() {
- if (Impl_) {
+ if (Impl_) {
Impl_->Flush();
}
}
@@ -372,7 +372,7 @@ void TZLibCompress::DoFlush() {
void TZLibCompress::DoFinish() {
THolder<TImpl> impl(Impl_.Release());
- if (impl) {
+ if (impl) {
impl->Finish();
}
}