Skip to content
Snippets Groups Projects
Commit 7ca6a253 authored by Franck Dary's avatar Franck Dary
Browse files

Words with IDs containing . are no longer parts of configs

parent 6cd66b1a
No related branches found
No related tags found
No related merge requests found
...@@ -197,6 +197,10 @@ void Config::fillTapesWithInput() ...@@ -197,6 +197,10 @@ void Config::fillTapesWithInput()
exit(1); exit(1);
} }
if (bd.hasLineOfName("ID"))
if (util::split(cols[bd.getLineOfName("ID")], '.').size() > 1)
continue;
for(unsigned int i = 0; i < cols.size(); i++) for(unsigned int i = 0; i < cols.size(); i++)
if(bd.hasLineOfInputCol(i)) if(bd.hasLineOfInputCol(i))
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment