mirror of https://github.com/Icinga/icinga2.git
Drop Checkable#reachable in favor of #last_reachable
This commit is contained in:
parent
2b3511d8a6
commit
d7b63143cf
|
@ -139,11 +139,6 @@ int Checkable::GetSeverity() const
|
|||
return 0;
|
||||
}
|
||||
|
||||
bool Checkable::GetReachable() const
|
||||
{
|
||||
return IsReachable();
|
||||
}
|
||||
|
||||
bool Checkable::GetProblem() const
|
||||
{
|
||||
return !IsStateOK(GetStateRaw());
|
||||
|
|
|
@ -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;
|
||||
|
||||
|
|
|
@ -123,9 +123,6 @@ abstract class Checkable : CustomVarObject
|
|||
[no_storage] int severity {
|
||||
get;
|
||||
};
|
||||
[no_storage] bool reachable {
|
||||
get;
|
||||
};
|
||||
[no_storage] bool problem {
|
||||
get;
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue