Skip to content

Commit

Permalink
refs #7732 tided up some comments
Browse files Browse the repository at this point in the history
Removed some comments form when i was making the edit
  • Loading branch information
keithnbrown committed Oct 25, 2013
1 parent 25c06cd commit 0a44305
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions Code/Mantid/Framework/DataHandling/src/LoadAscii2.cpp
Expand Up @@ -300,19 +300,6 @@ namespace Mantid

//start from the top again, this time filling in the list
file.seekg(0,std::ios_base::beg);

//move to the first bit of valid data, skipping over headers
/*
if (lastSpecID !=0)
{
lineno = lastSpecID;
}
for (int i = 0; i < (lineno - 1); i++)
{
getline(file,line);
}
*/
processHeader(file);
}

Expand All @@ -337,7 +324,6 @@ namespace Mantid
while( getline(file,line) )
{
++row;
//int nchars = (int)line.length(); TODO dead code?
boost::trim(line);
if( skipLine(line,true) )
{
Expand All @@ -358,7 +344,6 @@ namespace Mantid
}
}
if( numCols < 0 ) numCols = lineCols;
//if( lineCols == numCols || (lineCols == 1))
if( lineCols == m_baseCols || (lineCols == 1))
{
++matchingRows;
Expand Down

0 comments on commit 0a44305

Please sign in to comment.