🎨 Rename DEFAULT_SOCKET_PATH -> DefaultSocketPath

This commit is contained in:
Max Brunsfeld
2015-02-04 13:12:41 -08:00
parent d0757c87c8
commit 495caa7316

View File

@@ -14,7 +14,7 @@ url = require 'url'
{EventEmitter} = require 'events'
_ = require 'underscore-plus'
DEFAULT_SOCKET_PATH =
DefaultSocketPath =
if process.platform is 'win32'
'\\\\.\\pipe\\atom-sock'
else
@@ -31,7 +31,7 @@ class AtomApplication
# Public: The entry point into the Atom application.
@open: (options) ->
options.socketPath ?= DEFAULT_SOCKET_PATH
options.socketPath ?= DefaultSocketPath
createAtomApplication = -> new AtomApplication(options)