Removed throw from ConfigurationFactory::possiblePhases.

This commit is contained in:
Iron Prando da Silva
2022-03-08 09:50:09 +01:00
parent 6393eafb8f
commit 3a0f56f2b2

View File

@@ -64,8 +64,8 @@ const std::vector<QString> ConfigurationFactory::possiblePhases(const TraceDB& t
} else {
// TODO maybe throw?
throw std::invalid_argument("Could not find the device type '" + deviceName.toStdString() + '\'');
// throw std::invalid_argument("Could not find the device type '" + deviceName.toStdString() + '\'');
return {""};
}
}