Use skinny arrow for onPath callback

This commit is contained in:
Kevin Sawicki
2013-06-13 08:51:13 -07:00
parent 29c0f0c115
commit 42a8a1ff61

View File

@@ -93,7 +93,7 @@ module.exports =
listTreeSync: (rootPath) ->
paths = []
onPath = (childPath) =>
onPath = (childPath) ->
paths.push(childPath)
true
@traverseTreeSync(rootPath, onPath, onPath)