Remove fs/$native.getAllFilePathsAsync()

This was previously only used by project.getFilePath()
which should have been using fs.traverseTree() instead.
This commit is contained in:
Kevin Sawicki
2013-03-07 17:48:34 -08:00
parent 53b3fbfed6
commit acf5f4ce5e
4 changed files with 7 additions and 59 deletions

View File

@@ -117,9 +117,6 @@ module.exports =
@makeTree(@directory(path))
@makeDirectory(path)
getAllFilePathsAsync: (rootPath, callback) ->
$native.getAllFilePathsAsync(rootPath, callback)
traverseTree: (rootPath, onFile, onDirectory) ->
return unless nodeFs.existsSync(rootPath) and nodeFs.statSync(rootPath).isDirectory()