aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/json/easy_parse/json_easy_parser.cpp
diff options
context:
space:
mode:
authoreeight <eeight@yandex-team.ru>2022-02-10 16:46:19 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:46:19 +0300
commitbd085aee9b4f7a0bee302ce687964ffb7098f986 (patch)
tree1a2c5ffcf89eb53ecd79dbc9bc0a195c27404d0c /library/cpp/json/easy_parse/json_easy_parser.cpp
parent475c0a46f28166e83fd263badc7546377cddcabe (diff)
downloadydb-bd085aee9b4f7a0bee302ce687964ffb7098f986.tar.gz
Restoring authorship annotation for <eeight@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/json/easy_parse/json_easy_parser.cpp')
-rw-r--r--library/cpp/json/easy_parse/json_easy_parser.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/library/cpp/json/easy_parse/json_easy_parser.cpp b/library/cpp/json/easy_parse/json_easy_parser.cpp
index 0d4e1c52ff..3c781f544b 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));