Skip to content
Snippets Groups Projects
Commit 4c507455 authored by Nicholas Styles's avatar Nicholas Styles
Browse files

remove spurious warning

parent 5c2036c3
No related branches found
No related tags found
No related merge requests found
......@@ -93,7 +93,7 @@ int DBXMLUtils::getSchemaVersion(std::string xmlName) const
res = version;
latest_file = keyword;
}
else msg(MSG::WARNING)<<"Older version detected for "<<keyword<<" ("<<version<<") than "<<latest_file<<" ("<<res<<"). Taking newest ("<<res<<")!"<<endreq;
else if(version < res) msg(MSG::WARNING)<<"Older version detected for "<<keyword<<" ("<<version<<") than "<<latest_file<<" ("<<res<<"). Taking newest ("<<res<<")!"<<endreq;
nbCLOB++;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment