Drop Checkable#reachable in favor of #last_reachable

This commit is contained in:
Alexander A. Klimov 2019-04-12 13:03:11 +02:00
parent 2b3511d8a6
commit d7b63143cf
3 changed files with 0 additions and 9 deletions

View File

@ -139,11 +139,6 @@ int Checkable::GetSeverity() const
return 0;
}
bool Checkable::GetReachable() const
{
return IsReachable();
}
bool Checkable::GetProblem() const
{
return !IsStateOK(GetStateRaw());

View File

@ -85,7 +85,6 @@ public:
void ClearAcknowledgement(const MessageOrigin::Ptr& origin = nullptr);
int GetSeverity() const override;
bool GetReachable() const override;
bool GetProblem() const override;
bool GetHandled() const override;

View File

@ -123,9 +123,6 @@ abstract class Checkable : CustomVarObject
[no_storage] int severity {
get;
};
[no_storage] bool reachable {
get;
};
[no_storage] bool problem {
get;
};