Skip to content
Snippets Groups Projects
Commit f9c6fe67 authored by Sam Jenkins's avatar Sam Jenkins
Browse files

Rang clang format on code

Re #18529
parent a7923864
No related branches found
No related tags found
No related merge requests found
......@@ -217,20 +217,19 @@ const std::map<std::string, std::string> CatalogHelper::validateProperties(
// value.
errors.emplace(iter->first + "_err", documentation);
}
}
//catch invalid date formats
std::string dateField ="StartDate";
try{
getTimevalue(catalogAlgorithm->getProperty(dateField));
dateField="EndDate";
getTimevalue(catalogAlgorithm->getProperty(dateField));
}catch(std::invalid_argument){
std::string documentation =
propertyDocumentation(catalogAlgorithm->getProperties(), dateField);
errors.emplace(dateField+ "_err", documentation);
// catch invalid date formats
std::string dateField = "StartDate";
try {
getTimevalue(catalogAlgorithm->getProperty(dateField));
dateField = "EndDate";
getTimevalue(catalogAlgorithm->getProperty(dateField));
} catch (std::invalid_argument) {
std::string documentation =
propertyDocumentation(catalogAlgorithm->getProperties(), dateField);
errors.emplace(dateField + "_err", documentation);
}
return errors;
}
......@@ -254,7 +253,6 @@ time_t CatalogHelper::getTimevalue(const std::string &inputDate) {
// Return the date as time_t value.
return Mantid::Types::Core::DateAndTime(isoDate).to_time_t();
}
/**
......
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