diff --git a/src/app/project.coffee b/src/app/project.coffee index a46769925..323d98f0b 100644 --- a/src/app/project.coffee +++ b/src/app/project.coffee @@ -55,18 +55,13 @@ class Project filePaths = [] - count = 0 - start = new Date().getTime() onFile = (path) => - count++ filePaths.push(path) unless @ignoreFile(path) onDirectory = (path) => - count++ return not @ignoreDirectory(path) fs.traverseTree @getPath(), onFile, onDirectory - console.log "#{count} paths in #{new Date().getTime()-start}ms" deferred.resolve filePaths deferred