From baa58daefa91fde4b4769facdbd2903763b9c6a8 Mon Sep 17 00:00:00 2001
From: danlark <danlark@yandex-team.ru>
Date: Thu, 10 Feb 2022 16:46:10 +0300
Subject: Restoring authorship annotation for <danlark@yandex-team.ru>. Commit
 2 of 2.

---
 library/cpp/streams/lz/lz.cpp    | 2 +-
 library/cpp/streams/lz/lz_ut.cpp | 8 ++++----
 2 files changed, 5 insertions(+), 5 deletions(-)

(limited to 'library/cpp/streams/lz')

diff --git a/library/cpp/streams/lz/lz.cpp b/library/cpp/streams/lz/lz.cpp
index 01798a780c..b65bb3ed96 100644
--- a/library/cpp/streams/lz/lz.cpp
+++ b/library/cpp/streams/lz/lz.cpp
@@ -679,7 +679,7 @@ static TAutoPtr<IInputStream> TryOpenLzDecompressorX(const TDecompressSignature&
 template <class T>
 static inline TAutoPtr<IInputStream> TryOpenLzDecompressorImpl(const TStringBuf& signature, T input) {
     if (signature.size() == SIGNATURE_SIZE) {
-        TMemoryInput mem(signature.data(), signature.size()); 
+        TMemoryInput mem(signature.data(), signature.size());
         TDecompressSignature s(&mem);
 
         return TryOpenLzDecompressorX(s, input);
diff --git a/library/cpp/streams/lz/lz_ut.cpp b/library/cpp/streams/lz/lz_ut.cpp
index ba6bb47ba5..6876f070fc 100644
--- a/library/cpp/streams/lz/lz_ut.cpp
+++ b/library/cpp/streams/lz/lz_ut.cpp
@@ -32,7 +32,7 @@ namespace {
                 }
             } while (!sym);
             Y_ASSERT(sym);
-            j = (j + 1) % entropy.size(); 
+            j = (j + 1) % entropy.size();
             result += char(sym + entropy[j]);
         }
         return result;
@@ -56,7 +56,7 @@ namespace {
     }
 
     TString TestFileName(const TString& d, size_t bufferSize) {
-        return LDATA_RANDOM + TString(".") + ToString(d.size()) + TString(".") + ToString(bufferSize); 
+        return LDATA_RANDOM + TString(".") + ToString(d.size()) + TString(".") + ToString(bufferSize);
     }
 
     struct TRandomData: public TVector<TString> {
@@ -90,7 +90,7 @@ static inline void TestGoodDataCompress() {
     TString d = data;
 
     for (size_t i = 0; i < 10; ++i) {
-        c.Write(d.data(), d.size()); 
+        c.Write(d.data(), d.size());
         c << Endl;
         d = d + d;
     }
@@ -104,7 +104,7 @@ static inline void TestIncompressibleDataCompress(const TString& d, size_t buffe
     TString testFileName = TestFileName(d, bufferSize);
     TFixedBufferFileOutput o(testFileName);
     C c(&o, bufferSize);
-    c.Write(d.data(), d.size()); 
+    c.Write(d.data(), d.size());
     c.Finish();
     o.Finish();
 }
-- 
cgit v1.2.3