Skip to content

Commit

Permalink
Use default destructor.
Browse files Browse the repository at this point in the history
  • Loading branch information
thomreis committed Sep 13, 2021
1 parent 7d49b77 commit 77f7541
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions RecoMET/METFilters/plugins/EcalDeadCellDeltaRFilter.cc
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
class EcalDeadCellDeltaRFilter : public edm::stream::EDFilter<> {
public:
explicit EcalDeadCellDeltaRFilter(const edm::ParameterSet &);
~EcalDeadCellDeltaRFilter() override;
~EcalDeadCellDeltaRFilter() override = default;

private:
bool filter(edm::Event &, const edm::EventSetup &) override;
Expand Down Expand Up @@ -226,8 +226,6 @@ EcalDeadCellDeltaRFilter::EcalDeadCellDeltaRFilter(const edm::ParameterSet &iCon
produces<bool>();
}

EcalDeadCellDeltaRFilter::~EcalDeadCellDeltaRFilter() {}

void EcalDeadCellDeltaRFilter::envSet(const edm::EventSetup &iSetup) {
if (debug_)
std::cout << "***envSet***" << std::endl;
Expand Down

0 comments on commit 77f7541

Please sign in to comment.