Merge branch 'warnings' into v2.15.x.
[dcpomatic.git] / src / lib / playlist.cc
index 48053bbf485aa893ddd903646ee911baaba05bdc..b96b0fbe0edf48a809ba93f89c28e87de56a5b08 100644 (file)
@@ -70,13 +70,6 @@ Playlist::~Playlist ()
 void
 Playlist::content_change (weak_ptr<const Film> weak_film, ChangeType type, weak_ptr<Content> content, int property, bool frequent)
 {
-       /* Make sure we only hear about atomic changes (e.g. a PENDING always with the DONE/CANCELLED)
-          Ignore any DONE/CANCELLED that arrives without a PENDING.
-       */
-       if (_checker.send (type, property)) {
-               return;
-       }
-
        shared_ptr<const Film> film = weak_film.lock ();
        DCPOMATIC_ASSERT (film);