CR: remove return statement

This commit is contained in:
Luke Pommersheim
2015-08-06 16:18:08 +02:00
parent 5dd061c014
commit 412ea3242a

View File

@@ -824,7 +824,7 @@ class TextEditor extends Model
newSelectionBufferRanges = []
selections = @getSelectedBufferRanges()
selections.sort (a, b) ->
return a.compare(b)
a.compare(b)
for selection in selections
return if selection.start.row is 0
lastRow = @buffer.getLastRow()