Revert "Suppress timeout message in C++ MotorSafety class (#1512)"

This reverts commit 300eeb330d.
This commit is contained in:
Peter Johnson
2018-12-29 16:17:37 -08:00
parent 0e2e180635
commit 75cc09a9e4
2 changed files with 1 additions and 3 deletions

View File

@@ -16,8 +16,6 @@
using namespace frc;
MotorSafety::MotorSafety() { m_watchdog.SuppressTimeoutMessage(true); }
MotorSafety::MotorSafety(MotorSafety&& rhs)
: ErrorBase(std::move(rhs)), m_enabled(std::move(rhs.m_enabled)) {
m_watchdog = Watchdog(rhs.m_watchdog.GetTimeout(), [this] { TimeoutFunc(); });