aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/json
diff options
context:
space:
mode:
authoreeight <eeight@yandex-team.ru>2022-02-10 16:46:18 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:18 +0300
commit475c0a46f28166e83fd263badc7546377cddcabe (patch)
tree39c5a49b8aaad78fe390b6f1f2886bdbda40f3e7 /library/cpp/json
parenta6e0145a095c7bb3770d6e07aee301de5c73f96e (diff)
downloadydb-475c0a46f28166e83fd263badc7546377cddcabe.tar.gz
Restoring authorship annotation for <eeight@yandex-team.ru>. Commit 1 of 2.
Diffstat (limited to 'library/cpp/json')
-rw-r--r--library/cpp/json/easy_parse/json_easy_parser.cpp4
-rw-r--r--library/cpp/json/json_reader.cpp10
-rw-r--r--library/cpp/json/ut/json_reader_fast_ut.cpp2
-rw-r--r--library/cpp/json/writer/json_value.cpp2
4 files changed, 9 insertions, 9 deletions
diff --git a/library/cpp/json/easy_parse/json_easy_parser.cpp b/library/cpp/json/easy_parse/json_easy_parser.cpp
index 3c781f544b..0d4e1c52ff 100644
--- a/library/cpp/json/easy_parse/json_easy_parser.cpp
+++ b/library/cpp/json/easy_parse/json_easy_parser.cpp
@@ -1,6 +1,6 @@
#include "json_easy_parser.h"
#include <library/cpp/json/json_reader.h>
-#include <util/string/cast.h>
+#include <util/string/cast.h>
#include <util/string/split.h>
#include <util/string/strip.h>
@@ -13,7 +13,7 @@ namespace NJson {
TVector<const char*> parts;
Split(path.begin(), '/', &parts);
for (size_t n = 0; n < parts.size(); ++n) {
- TString part = Strip(parts[n]);
+ TString part = Strip(parts[n]);
if (!part.empty()) {
if (part[0] != '[') {
res->push_back(TPathElem(NImpl::MAP));
diff --git a/library/cpp/json/json_reader.cpp b/library/cpp/json/json_reader.cpp
index 072c8deafe..9cabc3efe0 100644
--- a/library/cpp/json/json_reader.cpp
+++ b/library/cpp/json/json_reader.cpp
@@ -423,12 +423,12 @@ namespace NJson {
}
TJsonValue ReadJsonFastTree(TStringBuf in, bool notClosedBracketIsError) {
- TJsonValue value;
- // There is no way to report an error apart from throwing an exception when we return result by value.
+ TJsonValue value;
+ // There is no way to report an error apart from throwing an exception when we return result by value.
ReadJsonFastTree(in, &value, /* throwOnError = */ true, notClosedBracketIsError);
- return value;
- }
-
+ return value;
+ }
+
namespace {
struct TJsonCallbacksWrapper {
TJsonCallbacks& Impl;
diff --git a/library/cpp/json/ut/json_reader_fast_ut.cpp b/library/cpp/json/ut/json_reader_fast_ut.cpp
index 60dffc91c7..647804b998 100644
--- a/library/cpp/json/ut/json_reader_fast_ut.cpp
+++ b/library/cpp/json/ut/json_reader_fast_ut.cpp
@@ -3,7 +3,7 @@
#include <library/cpp/testing/unittest/registar.h>
#include <library/cpp/string_utils/relaxed_escaper/relaxed_escaper.h>
-#include <util/string/cast.h>
+#include <util/string/cast.h>
#include <util/string/printf.h>
namespace NJson {
diff --git a/library/cpp/json/writer/json_value.cpp b/library/cpp/json/writer/json_value.cpp
index c61e8d1dc4..6010b4e4d1 100644
--- a/library/cpp/json/writer/json_value.cpp
+++ b/library/cpp/json/writer/json_value.cpp
@@ -921,7 +921,7 @@ namespace NJson {
}
bool TJsonValue::Has(const TStringBuf& key) const noexcept {
- return Type == JSON_MAP && Value.Map->contains(key);
+ return Type == JSON_MAP && Value.Map->contains(key);
}
bool TJsonValue::Has(size_t key) const noexcept {