mirror of
https://github.com/atom/atom.git
synced 2026-01-22 21:38:10 -05:00
Remove empty param lists as per the linter.
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user