expand tabs in reaonablesynth code
[ardour.git] / libs / ardour / configuration.cc
index dd863ee398578c5c1ce48497d7db8ea07e3e2d1b..d5ca426a74d3c8cf9d3493f0c4e6f3bcdc3481c3 100644 (file)
@@ -69,9 +69,6 @@ ConfigVariableBase::set_from_node (XMLNode const & node)
                                if ((prop = child->property ("name")) != 0) {
                                        if (prop->value() == _name) {
                                                if ((prop = child->property ("value")) != 0) {
-                                                        if (_name == "audio-search-path") {
-                                                                sleep (1);
-                                                        }
                                                        set_from_string (prop->value());
                                                        return true;
                                                }
@@ -97,7 +94,6 @@ ConfigVariableBase::set_from_node (XMLNode const & node)
 
                        if (option->name() == _name) {
                                if ((opt_prop = option->property ("val")) != 0) {
-                                        cerr << "Setting " << _name << " to " << opt_prop->value() << endl;
                                        set_from_string (opt_prop->value());
                                        return true;
                                }