From 9abfb1a53b7f7b791444d1378e645d8fad9b06ed Mon Sep 17 00:00:00 2001
From: yazevnul <yazevnul@yandex-team.ru>
Date: Thu, 10 Feb 2022 16:46:48 +0300
Subject: Restoring authorship annotation for <yazevnul@yandex-team.ru>. Commit
 2 of 2.

---
 library/cpp/messagebus/scheduler/scheduler.cpp | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

(limited to 'library/cpp/messagebus/scheduler/scheduler.cpp')

diff --git a/library/cpp/messagebus/scheduler/scheduler.cpp b/library/cpp/messagebus/scheduler/scheduler.cpp
index 506af354e6..5a5fe52894 100644
--- a/library/cpp/messagebus/scheduler/scheduler.cpp
+++ b/library/cpp/messagebus/scheduler/scheduler.cpp
@@ -23,7 +23,7 @@ TScheduler::TScheduler()
 }
 
 TScheduler::~TScheduler() {
-    Y_VERIFY(StopThread, "state check"); 
+    Y_VERIFY(StopThread, "state check");
 }
 
 size_t TScheduler::Size() const {
@@ -34,7 +34,7 @@ size_t TScheduler::Size() const {
 void TScheduler::Stop() {
     {
         TGuard<TLock> guard(Lock);
-        Y_VERIFY(!StopThread, "Scheduler already stopped"); 
+        Y_VERIFY(!StopThread, "Scheduler already stopped");
         StopThread = true;
         CondVar.Signal();
     }
@@ -44,8 +44,8 @@ void TScheduler::Stop() {
         NextItem.Destroy();
     }
 
-    for (auto& item : Items) { 
-        item.Destroy(); 
+    for (auto& item : Items) {
+        item.Destroy();
     }
 }
 
@@ -98,7 +98,7 @@ void TScheduler::SchedulerThread() {
             }
 
             // signal comes if either scheduler is to be stopped of there's work to do
-            Y_VERIFY(!!NextItem, "state check"); 
+            Y_VERIFY(!!NextItem, "state check");
 
             if (TInstant::Now() < NextItem->GetScheduleTime()) {
                 // NextItem is updated since WaitD
-- 
cgit v1.2.3