From 46885b2f72030a887c2787858929c8ed088fdaaf Mon Sep 17 00:00:00 2001 From: Geir Storli Date: Thu, 9 May 2019 11:54:17 +0000 Subject: Remove the legacy protocol between logd and logserver. The RPC protocol has been the new default since 2019-04-12. --- logd/src/tests/watcher/watcher_test.cpp | 3 --- 1 file changed, 3 deletions(-) (limited to 'logd/src/tests/watcher/watcher_test.cpp') diff --git a/logd/src/tests/watcher/watcher_test.cpp b/logd/src/tests/watcher/watcher_test.cpp index fffaac17058..9f7c476e101 100644 --- a/logd/src/tests/watcher/watcher_test.cpp +++ b/logd/src/tests/watcher/watcher_test.cpp @@ -57,18 +57,15 @@ ConfigFixture::~ConfigFixture() = default; struct DummyForwarder : public Forwarder { std::mutex lock; std::condition_variable cond; - std::atomic sendModeCount; std::vector lines; DummyForwarder() : Forwarder(), lock(), cond(), - sendModeCount(0), lines() { } ~DummyForwarder() override = default; - void sendMode() override { ++sendModeCount; } void forwardLine(std::string_view log_line) override { std::lock_guard guard(lock); lines.emplace_back(log_line); -- cgit v1.2.3