Remove unused method.
authorCarl Hetherington <cth@carlh.net>
Tue, 7 Jun 2016 15:02:49 +0000 (16:02 +0100)
committerCarl Hetherington <cth@carlh.net>
Tue, 7 Jun 2016 15:02:49 +0000 (16:02 +0100)
src/lib/examine_content_job.cc
src/lib/examine_content_job.h

index a304ebea09130bfa80894d2ce51e1ca2247d85ed..a9df63be77daf5b7e7fcf07539a90beadfa8c4cb 100644 (file)
@@ -38,10 +38,6 @@ ExamineContentJob::ExamineContentJob (shared_ptr<const Film> film, shared_ptr<Co
 
 }
 
-ExamineContentJob::~ExamineContentJob ()
-{
-}
-
 string
 ExamineContentJob::name () const
 {
index 145f480486df76f2866c56fe3049ab391d929f41..0f4da2457c646fff9fb47ee0efb50a74820ed033 100644 (file)
@@ -27,7 +27,6 @@ class ExamineContentJob : public Job
 {
 public:
        ExamineContentJob (boost::shared_ptr<const Film>, boost::shared_ptr<Content>);
-       ~ExamineContentJob ();
 
        std::string name () const;
        std::string json_name () const;
@@ -36,4 +35,3 @@ public:
 private:
        boost::shared_ptr<Content> _content;
 };
-