removed debug line

This commit is contained in:
Morgan McMillian 2012-03-10 12:47:18 -05:00
parent 9673df02b1
commit 47c6f6f7b6
1 changed files with 0 additions and 1 deletions

View File

@ -9,7 +9,6 @@ ReadFileAssistant.prototype.run = function(future) {
fs.readFile(path, 'utf8', function(err,data) {
//future.result = { path: path, content: data };
setTimeout(function () {
console.log("delay test...");
future.result = { path: path, content: data };
}, 100);
});