diff --git a/Framework/Core/src/ArrowSupport.cxx b/Framework/Core/src/ArrowSupport.cxx index 0e524da280598..9126d449c8aa3 100644 --- a/Framework/Core/src/ArrowSupport.cxx +++ b/Framework/Core/src/ArrowSupport.cxx @@ -455,7 +455,6 @@ o2::framework::ServiceSpec ArrowSupport::arrowBackendSpec() ac.providedTIMs.clear(); ac.requestedTIMs.clear(); - auto inputSpecLessThan = [](InputSpec const& lhs, InputSpec const& rhs) { return DataSpecUtils::describe(lhs) < DataSpecUtils::describe(rhs); }; auto outputSpecLessThan = [](OutputSpec const& lhs, OutputSpec const& rhs) { return DataSpecUtils::describe(lhs) < DataSpecUtils::describe(rhs); }; @@ -565,8 +564,6 @@ o2::framework::ServiceSpec ArrowSupport::arrowBackendSpec() } } - - // replace writer as some outputs may have become dangling and some are now consumed auto [outputsInputs, isDangling] = WorkflowHelpers::analyzeOutputs(workflow);