removed linuxWatch function from main.js

This commit is contained in:
coderaiser 2013-05-30 06:38:42 -04:00
parent 8e9dfd8e84
commit dd413c87e5
2 changed files with 2 additions and 8 deletions

View file

@ -29,6 +29,8 @@ dispatch
* Removed function _editFileName from client.js.
* Removed linuxWatch function from main.js.
2012.04.22, v0.2.0

View file

@ -437,12 +437,4 @@
return lGZIP;
}
function linuxWatch(pFile, pCallBack){
fs.watchFile(pFile, function(pCurr, pPrev){
if(pCurr.mtime !== pPrev.mtime)
Util.exec(pCallBack);
});
}
})();