removed unused function

This commit is contained in:
AJ ONeal 2011-02-03 15:08:44 -07:00
parent a834a070af
commit fa29c9140c
1 changed files with 0 additions and 11 deletions

View File

@ -53,17 +53,6 @@
emitter.emit('end');
}
function getDirectory (enqueue) {
fs.readdir(curpath, function(err, files) {
if (!files) return;
//if (err) throw Error(err);
files.sort(sort);
emitter.emit('nodes', curpath, files);
files.forEach(fullPath);
enqueue(files);
});
}
function fullPath(v,i,o) {
o[i]= [curpath, '/', v].join('');
}