Remove empty param lists as per the linter.

This commit is contained in:
Michael Bolin 2015-06-02 16:28:31 -04:00
parent 735bdcca08
commit fa3fd9c50c

View File

@ -9,11 +9,11 @@ nextId = 1
activeSearchId = 0
emitter = new EventEmitter
onSearchFinished = () ->
onSearchFinished = ->
activeSearchId = null
runNextSearch()
runNextSearch = () ->
runNextSearch = ->
unless activeSearchId
activeSearchId = searchQueue.shift()
emitter.emit(activeSearchId, null) if activeSearchId