1
1
mirror of https://github.com/danbee/persephone synced 2025-03-04 08:39:11 +00:00

Calling init() is implied

This commit is contained in:
Daniel Barber 2019-02-16 18:54:51 -05:00
parent cc7d8d3c88
commit 9bedbec407
Signed by: danbarber
GPG Key ID: 931D8112E0103DD8

View File

@ -194,7 +194,7 @@ class QueueViewController: NSViewController, NSOutlineViewDataSource, NSOutlineV
selectionIndexesForProposedSelection proposedSelectionIndexes: IndexSet selectionIndexesForProposedSelection proposedSelectionIndexes: IndexSet
) -> IndexSet { ) -> IndexSet {
if proposedSelectionIndexes.contains(0) { if proposedSelectionIndexes.contains(0) {
return IndexSet.init() return IndexSet()
} else { } else {
return proposedSelectionIndexes return proposedSelectionIndexes
} }