Commit d8f8fb3c authored by Marco De Marco's avatar Marco De Marco
Browse files

File in watch path processed at startup removed

parent 42d91ec0
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -174,6 +174,7 @@ void EventThread::initEventBuffer() throw(std::runtime_error)
        throw std::runtime_error("Watch path \"" +
            watchPath + "\" is not a valid directory");

    /*
    //All files in watch path are inserted into event buffer
    boost::filesystem::directory_iterator startIt(path);
    boost::filesystem::directory_iterator endIt;
@@ -185,6 +186,7 @@ void EventThread::initEventBuffer() throw(std::runtime_error)

        startIt++;
    }
    */
}

//==============================================================================