Remove unused function parameter

for setupAtomHome function no longer needing args
This commit is contained in:
Dave Rael
2015-10-21 04:40:05 -06:00
parent e0697ecc7f
commit e93b013059

View File

@@ -14,7 +14,7 @@ console.log = require 'nslog'
start = ->
args = parseCommandLine()
setupAtomHome(args)
setupAtomHome
setupCompileCache()
return if handleStartupEventWithSquirrel()
@@ -57,7 +57,7 @@ handleStartupEventWithSquirrel = ->
setupCrashReporter = ->
crashReporter.start(productName: 'Atom', companyName: 'GitHub')
setupAtomHome = (args) ->
setupAtomHome = ->
return if process.env.ATOM_HOME
atomHome = path.join(app.getHomeDir(), '.atom')
AtomPortable = require './atom-portable'