From 8afa19d6579e8d3351a28f691f8298d03fcf3948 Mon Sep 17 00:00:00 2001
From: mikhnenko <mikhnenko@yandex-team.com>
Date: Thu, 10 Oct 2024 15:49:45 +0300
Subject: 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
---
 library/cpp/unified_agent_client/examples/ua_grpc_client/main.cpp | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

(limited to 'library/cpp/unified_agent_client/examples/ua_grpc_client')

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;
         }
 
-- 
cgit v1.2.3