Skip to content

Commit 7a5f910

Browse files
author
Michal Tichák
committed
fixup! ignore warnings variable in objectManager.cxx
1 parent 5a2ba62 commit 7a5f910

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

Framework/include/QualityControl/ObjectsManager.h

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,8 +101,7 @@ class ObjectsManager
101101
* @param obj
102102
* @throw ObjectNotFoundError if object is not found.
103103
*/
104-
void
105-
stopPublishing(TObject* obj);
104+
void stopPublishing(TObject* obj);
106105

107106
/**
108107
* Stop publishing this object

Framework/src/SliceTrendingTask.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -253,7 +253,7 @@ void SliceTrendingTask::generatePlots()
253253
}
254254

255255
mPlots[plot.name] = c;
256-
getObjectsManager()->startPublishing<true>(c, PublicationPolicy::Once);
256+
getObjectsManager()->startPublishing(c, PublicationPolicy::Once);
257257
}
258258
} // void SliceTrendingTask::generatePlots()
259259

Framework/src/TrendingTask.cxx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -257,7 +257,7 @@ void TrendingTask::generatePlots()
257257
}
258258
auto c = drawPlot(plotConfig);
259259
mPlots[plotConfig.name].reset(c);
260-
getObjectsManager()->startPublishing<true>(c, PublicationPolicy::Once);
260+
getObjectsManager()->startPublishing(c, PublicationPolicy::Once);
261261
}
262262
}
263263

0 commit comments

Comments
 (0)