From bc2dd9f52c9a0fecc8b034956043f011cc004006 Mon Sep 17 00:00:00 2001 From: Nathan Sobo Date: Mon, 20 Oct 2014 10:06:19 -0600 Subject: [PATCH] Drop unnecessary encoding argument --- src/browser/main.coffee | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/browser/main.coffee b/src/browser/main.coffee index 1842b864f..f17e2902c 100644 --- a/src/browser/main.coffee +++ b/src/browser/main.coffee @@ -129,7 +129,7 @@ parseCommandLine = -> packageManifestPath = path.join(packageDirectoryPath, 'package.json') if fs.statSyncNoException(packageManifestPath) try - packageManifest = JSON.parse(fs.readFileSync(packageManifestPath, 'utf8')) + packageManifest = JSON.parse(fs.readFileSync(packageManifestPath)) resourcePath = packageDirectoryPath if packageManifest.name is 'atom' if devMode