Remove unneeded try/catch

Esse commit está contido em:
Kevin Sawicki
2015-02-02 14:08:35 -08:00
commit 2e989b502a
+2 -5
Ver Arquivo
@@ -113,11 +113,8 @@ createOptions = (filePath) ->
transpile = (sourceCode, filePath, cachePath) ->
options = createOptions(filePath)
try
js = to5.transform(sourceCode, options).code
stats.misses++
catch error
throw error
js = to5.transform(sourceCode, options).code
stats.misses++
try
fs.writeFileSync(cachePath, js)