mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-03-14 07:00:01 -04:00
Update server.coffee
Removed unnecessary return statement in server.coffee. Functions will always return their final value.
This commit is contained in:
parent
f7ec30a586
commit
1fee6c7186
1 changed files with 1 additions and 1 deletions
|
@ -12,7 +12,7 @@ module.exports.startServer = ->
|
|||
app = createAndConfigureApp()
|
||||
http.createServer(app).listen(app.get('port'))
|
||||
log.info("Express SSL server listening on port " + app.get('port'))
|
||||
return app
|
||||
app
|
||||
|
||||
createAndConfigureApp = ->
|
||||
serverSetup.setupLogging()
|
||||
|
|
Loading…
Reference in a new issue