remove no-op lock/unlock from Lock sub-classes

This commit is contained in:
Michael Davidsaver
2017-05-15 17:24:16 -04:00
parent bbe6cb2553
commit b05e7699b5
14 changed files with 0 additions and 384 deletions

View File

@@ -51,8 +51,6 @@ struct BreakTransport : TransportSender
{
throw epics::pvAccess::detail::connection_closed_exception("Break");
}
virtual void lock() {}
virtual void unlock() {}
};
} // namespace
@@ -1427,9 +1425,6 @@ public:
control->flush(true);
}
void lock() {}
void unlock() {}
private:
PVField::shared_pointer _data;
};