commented out code that will try to find a cti file if the xml file is not found.

This commit is contained in:
Dave Goodwin 2006-07-11 15:38:22 +00:00
parent 3436e52eab
commit 4c0648b5b2

View file

@ -144,6 +144,7 @@ namespace Cantera {
XML_Node* get_XML_File(string file) {
string path = "";
/*
try {
path = findInputFile(file);
}
@ -163,6 +164,12 @@ namespace Cantera {
else
path = findInputFile(file);
}
*/
// The code above will try to process a cti file if the xml
// file is not found. But I (dgg) don't think it makes much sense,
// so it is replaced by:
path = findInputFile(file);
//
string ff = path;
if (app()->xmlfiles.find(path)