remove accessors in DeckRecord added for external serialization

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

View File

@@ -70,8 +70,6 @@ namespace Opm {
bool operator==(const DeckRecord& other) const;
bool operator!=(const DeckRecord& other) const;
const std::vector<DeckItem>& getItems() const;
template<class Serializer>
void serializeOp(Serializer& serializer)
{

View File

@@ -173,8 +173,4 @@ namespace Opm {
return !(*this == other);
}
const std::vector<DeckItem>& DeckRecord::getItems() const {
return m_items;
}
}