mirror of
https://github.com/atom/atom.git
synced 2026-01-25 06:48:28 -05:00
Remove unused function parameter
for setupAtomHome function no longer needing args
This commit is contained in:
@@ -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'
|
||||
|
||||
Reference in New Issue
Block a user