diff options
author | mikhnenko <mikhnenko@yandex-team.com> | 2024-10-10 15:49:45 +0300 |
---|---|---|
committer | mikhnenko <mikhnenko@yandex-team.com> | 2024-10-10 16:05:56 +0300 |
commit | 8afa19d6579e8d3351a28f691f8298d03fcf3948 (patch) | |
tree | f7d03d93bbbdda60d851455652caaeaf68a618d4 /library/cpp/unified_agent_client/examples/ua_grpc_client | |
parent | ac5aa42143c88e9616c4b6986cf89dad3cdb99ec (diff) | |
download | ydb-8afa19d6579e8d3351a28f691f8298d03fcf3948.tar.gz |
Use lower case for TString methods Data, Size and Empty in extsearch, fintech, games, geobase, infra, ipreg, juggler, kernel, keyboard, laas, library, logbroker, logos, mail
If you think that this pr has broken something for you, roll it back
commit_hash:df8e48b2a4ecbbc74a504aa3ff62ebb8f464218d
Diffstat (limited to 'library/cpp/unified_agent_client/examples/ua_grpc_client')
-rw-r--r-- | library/cpp/unified_agent_client/examples/ua_grpc_client/main.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/library/cpp/unified_agent_client/examples/ua_grpc_client/main.cpp b/library/cpp/unified_agent_client/examples/ua_grpc_client/main.cpp index 8f247cf9ad..188491eb7a 100644 --- a/library/cpp/unified_agent_client/examples/ua_grpc_client/main.cpp +++ b/library/cpp/unified_agent_client/examples/ua_grpc_client/main.cpp @@ -74,12 +74,12 @@ int main(int argc, const char* argv[]) { { TLog emptyLog; auto clientParameters = TClientParameters(options.Uri).SetLog(emptyLog); - if (!options.SharedSecretKey.Empty()) { + if (!options.SharedSecretKey.empty()) { clientParameters.SetSharedSecretKey(options.SharedSecretKey); } auto clientPtr = MakeClient(clientParameters); auto sessionParameters = TSessionParameters(); - if (!options.SessionId.Empty()) { + if (!options.SessionId.empty()) { sessionParameters.SetSessionId(options.SessionId); } if (!options.SessionMeta.empty()) { @@ -95,7 +95,7 @@ int main(int argc, const char* argv[]) { TString line; while (true) { Cin.ReadLine(line); - if (line.Empty()) { + if (line.empty()) { break; } |