Rename traverseTree to traverseTreeSync

Also rename traverseTreeAsync to traverseTree
This commit is contained in:
Kevin Sawicki
2013-03-13 14:39:19 -07:00
parent 8fe9e31c08
commit 8dbcb44d06
5 changed files with 13 additions and 13 deletions

View File

@@ -27,7 +27,7 @@ class LoadPathsTask
onDone = =>
@callback(paths) unless @aborted
fs.traverseTreeAsync(rootPath, onFile, onDirectory, onDone)
fs.traverseTree(rootPath, onFile, onDirectory, onDone)
abort: ->
@aborted = true