* radically cleaned up / refactored midi_clock_slave.cc
[ardour.git] / libs / ardour / template_utils.cc
index 5def842c4cafe47ab70c20a8ee71963916a0eea3..171939dac2ccc4b28e6373f1d95e2388bbde6634 100644 (file)
@@ -1,7 +1,6 @@
 #include <algorithm>
 
 #include <pbd/filesystem.h>
-#include <pbd/error.h>
 
 #include <ardour/template_utils.h>
 #include <ardour/directory_names.h>
@@ -18,11 +17,7 @@ system_template_directory ()
        // just return the first directory in the search path that exists
        SearchPath::const_iterator i = std::find_if(spath.begin(), spath.end(), sys::exists);
 
-       if (i == spath.end())
-       {
-               warning << "System template directory does not exist" << endmsg;
-               return sys::path("");
-       }
+       if (i == spath.end()) return sys::path();
 
        return *i;
 }