From d3a398281c6fd1d3672036cb2d63f842d2cb28c5 Mon Sep 17 00:00:00 2001
From: Anton Samokhvalov <pg83@yandex.ru>
Date: Thu, 10 Feb 2022 16:45:17 +0300
Subject: Restoring authorship annotation for Anton Samokhvalov
 <pg83@yandex.ru>. Commit 2 of 2.

---
 library/cpp/protobuf/json/string_transform.cpp | 72 +++++++++++++-------------
 1 file changed, 36 insertions(+), 36 deletions(-)

(limited to 'library/cpp/protobuf/json/string_transform.cpp')

diff --git a/library/cpp/protobuf/json/string_transform.cpp b/library/cpp/protobuf/json/string_transform.cpp
index 6f982ece61..7c42daa677 100644
--- a/library/cpp/protobuf/json/string_transform.cpp
+++ b/library/cpp/protobuf/json/string_transform.cpp
@@ -5,53 +5,53 @@
 #include <library/cpp/string_utils/base64/base64.h>
 
 namespace NProtobufJson {
-    void TCEscapeTransform::Transform(TString& str) const { 
-        str = google::protobuf::CEscape(str); 
-    } 
+    void TCEscapeTransform::Transform(TString& str) const {
+        str = google::protobuf::CEscape(str);
+    }
 
-    void TSafeUtf8CEscapeTransform::Transform(TString& str) const { 
-        str = google::protobuf::strings::Utf8SafeCEscape(str); 
-    } 
+    void TSafeUtf8CEscapeTransform::Transform(TString& str) const {
+        str = google::protobuf::strings::Utf8SafeCEscape(str);
+    }
 
-    void TDoubleEscapeTransform::Transform(TString& str) const { 
-        TString escaped = google::protobuf::CEscape(str); 
-        str = ""; 
-        for (char* it = escaped.begin(); *it; ++it) { 
-            if (*it == '\\' || *it == '\"') 
-                str += "\\"; 
-            str += *it; 
-        } 
-    } 
+    void TDoubleEscapeTransform::Transform(TString& str) const {
+        TString escaped = google::protobuf::CEscape(str);
+        str = "";
+        for (char* it = escaped.begin(); *it; ++it) {
+            if (*it == '\\' || *it == '\"')
+                str += "\\";
+            str += *it;
+        }
+    }
 
-    void TDoubleUnescapeTransform::Transform(TString& str) const { 
-        str = google::protobuf::UnescapeCEscapeString(Unescape(str)); 
+    void TDoubleUnescapeTransform::Transform(TString& str) const {
+        str = google::protobuf::UnescapeCEscapeString(Unescape(str));
     }
 
-    TString TDoubleUnescapeTransform::Unescape(const TString& str) const { 
-        if (str.empty()) { 
-            return str; 
-        } 
+    TString TDoubleUnescapeTransform::Unescape(const TString& str) const {
+        if (str.empty()) {
+            return str;
+        }
 
-        TString result; 
-        result.reserve(str.size()); 
+        TString result;
+        result.reserve(str.size());
 
-        char prev = str[0]; 
-        bool doneOutput = true; 
-        for (const char* it = str.c_str() + 1; *it; ++it) { 
-            if (doneOutput && prev == '\\' && (*it == '\\' || *it == '\"')) { 
-                doneOutput = false; 
-            } else { 
-                result += prev; 
-                doneOutput = true; 
-            } 
-            prev = *it; 
-        } 
+        char prev = str[0];
+        bool doneOutput = true;
+        for (const char* it = str.c_str() + 1; *it; ++it) {
+            if (doneOutput && prev == '\\' && (*it == '\\' || *it == '\"')) {
+                doneOutput = false;
+            } else {
+                result += prev;
+                doneOutput = true;
+            }
+            prev = *it;
+        }
 
-        if ((doneOutput && prev != '\\') || !doneOutput) { 
+        if ((doneOutput && prev != '\\') || !doneOutput) {
             result += prev;
         }
 
-        return result; 
+        return result;
     }
 
     void TBase64EncodeBytesTransform::TransformBytes(TString &str) const {
-- 
cgit v1.2.3