#3512 System : Remove unused functions

This commit is contained in:
Magne Sjaastad
2018-10-18 15:14:25 +02:00
parent 5e25db97da
commit 766fea603e
54 changed files with 47 additions and 669 deletions

View File

@@ -532,33 +532,6 @@ bool RifEclipseUserDataParserTools::isFixedWidthHeader(const std::string& lines)
return false;
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------
bool RifEclipseUserDataParserTools::hasCompleteDataForAllHeaderColumns(const std::string& lines)
{
std::stringstream streamData(lines);
bool headerDataComplete = true;
{
auto headerLines = RifEclipseUserDataParserTools::findValidHeaderLines(streamData);
if (headerLines.size() > 0)
{
size_t wordsFirstLine = headerLines[0].size();
for (auto line : headerLines)
{
if (wordsFirstLine != line.size())
{
headerDataComplete = false;
}
}
}
}
return headerDataComplete;
}
//--------------------------------------------------------------------------------------------------
///
//--------------------------------------------------------------------------------------------------