Remove unused method. own-config
authorCarl Hetherington <cth@carlh.net>
Mon, 27 Sep 2021 09:45:00 +0000 (11:45 +0200)
committerCarl Hetherington <cth@carlh.net>
Mon, 27 Sep 2021 09:45:00 +0000 (11:45 +0200)
src/lib/config.cc
src/lib/config.h

index 4aa4788bf1493001945ee06ef57fcbb4cc4e94f0..4924d13babdf16c7cb06c8a5d746cd7d59c655bf 100644 (file)
@@ -1254,25 +1254,6 @@ Config::read_dkdm_recipients (cxml::Document const & f)
        }
 }
 
-void
-Config::set_dkdm_recipients_file (boost::filesystem::path file)
-{
-       if (file == _dkdm_recipients_file) {
-               return;
-       }
-
-       _dkdm_recipients_file = file;
-
-       if (boost::filesystem::exists (_dkdm_recipients_file)) {
-               /* Existing file; read it in */
-               cxml::Document f ("DKDMRecipients");
-               f.read_file (_dkdm_recipients_file);
-               read_dkdm_recipients (f);
-       }
-
-       changed (OTHER);
-}
-
 
 void
 Config::save_template (shared_ptr<const Film> film, string name) const
index 5981e799488f0a1dd7ad8a3b2a4a1d13c1d91983..c9206b139fce004f83c63a5840b3c6083be7e918 100644 (file)
@@ -827,8 +827,6 @@ public:
 
        void set_cinemas_file (boost::filesystem::path file);
 
-       void set_dkdm_recipients_file (boost::filesystem::path file);
-
        void set_show_hints_before_make_dcp (bool s) {
                maybe_set (_show_hints_before_make_dcp, s);
        }