Skip to content

Commit

Permalink
Please consider the following formatting changes
Browse files Browse the repository at this point in the history
  • Loading branch information
alibuild committed Dec 23, 2024
1 parent be2a6a9 commit 8236696
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Common/Core/TableHelper.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@ bool isTableRequiredInWorkflow(o2::framework::InitContext& initContext, const st
if (input.matcher.binding == table) {
LOG(debug) << "Table: " << input.matcher.binding << " is needed in device: " << device.name;
tableNeeded = true;
}else{
std::string versionedTable = table;
} else {
std::string versionedTable = table;
versionedTable.append("_00"); // would need fixing in case of more than 9 versions
if (input.matcher.binding.find(versionedTable) != std::string::npos) {
LOG(debug) << "Versioned table: " << input.matcher.binding << " is needed in device: " << device.name << "(original table name: "<<table<<")";
LOG(debug) << "Versioned table: " << input.matcher.binding << " is needed in device: " << device.name << "(original table name: " << table << ")";
tableNeeded = true;
}
}
Expand Down

0 comments on commit 8236696

Please sign in to comment.