Removed expectedItems param from readFromRawRecord method in ParserItem

This commit is contained in:
Kristian Flikka
2013-08-23 14:43:17 +02:00
parent 771167c02e
commit 64fb9a6cee
4 changed files with 6 additions and 10 deletions

View File

@@ -67,7 +67,7 @@ namespace Opm {
if ((expectedItems > 0) || scanAll) {
bool defaultActive;
std::vector<int> intsPreparedForDeckItem = readFromRawRecord(rawRecord, scanAll, expectedItems, m_default, defaultActive);
std::vector<int> intsPreparedForDeckItem = readFromRawRecord(rawRecord, scanAll, m_default, defaultActive);
if (scanAll)
deckItem->push_back(intsPreparedForDeckItem);