Remove semicolon

This commit is contained in:
Kevin Sawicki
2014-10-08 19:01:43 -07:00
parent 086be13ac4
commit d7cb1550bf

View File

@@ -127,7 +127,7 @@ if cache.debug
originalFindPath = Module._findPath
Module._findPath = (request, paths) ->
cacheKey = JSON.stringify({request, paths});
cacheKey = JSON.stringify({request, paths})
cache.findPathCount++ unless Module._pathCache[cacheKey]
startTime = Date.now()
foundPath = originalFindPath.apply(global, arguments)