remove accessors in MessageLimits added for external serialization

This commit is contained in:
Arne Morten Kvarving
2020-03-17 14:02:21 +01:00
parent 48eee807f7
commit 4b7801ba84
2 changed files with 0 additions and 6 deletions

View File

@@ -121,7 +121,6 @@ namespace Opm {
void setErrorStopLimit(size_t timestep, int value);
void setBugStopLimit(size_t timestep, int value);
const DynamicState<MLimits>& getLimits() const;
bool operator==(const MessageLimits& data) const;
template<class Serializer>

View File

@@ -206,11 +206,6 @@ namespace Opm {
this->update( timestep , mlimit );
}
const DynamicState<MLimits>& MessageLimits::getLimits() const
{
return limits;
}
bool MessageLimits::operator==(const MessageLimits& data) const
{
return limits == data.limits;