Skip to content
Snippets Groups Projects
Commit 923cae37 authored by sutt's avatar sutt
Browse files

remove redundant check on empty string

parent 310d14b8
7 merge requests!58791DataQualityConfigurations: Modify L1Calo config for web display,!46784MuonCondInterface: Enable thread-safety checking.,!46776Updated LArMonitoring config file for WD to match new files produced using MT,!45405updated ART test cron job,!42417Draft: DIRE and VINCIA Base Fragments for Pythia 8.3,!37019Enhance TDT feature retrieval by allowing regex matching,!36437Enhance TDT feature retrieval by allowing regex matching
......@@ -140,10 +140,7 @@ namespace TrigCompositeUtils {
return;
}
auto it = std::remove_if(vector.begin(), vector.end(), [&](const ElementLink<CONTAINER>& el) {
/// handle explicit case of an empty string
if ( containerSGKey=="" ) return false;
/// handle everything else
return !std::regex_match( el.dataID(), std::regex(containerSGKey) );
return !std::regex_match( el.dataID(), std::regex(containerSGKey) );
});
// Collection has been re-ordered to put the bad elements at the end
vector.erase(it, vector.end());
......
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