Removes unused code from BrowseViewController

This commit is contained in:
Riley Testut
2019-09-03 21:58:44 -07:00
parent c2a8b59e36
commit 82b4d28698

View File

@@ -41,18 +41,6 @@ class BrowseViewController: UICollectionViewController
self.fetchSource()
self.updateDataSource()
}
override func prepare(for segue: UIStoryboardSegue, sender: Any?)
{
guard segue.identifier == "showApp" else { return }
guard let cell = sender as? UICollectionViewCell, let indexPath = self.collectionView.indexPath(for: cell) else { return }
let app = self.dataSource.item(at: indexPath)
let appViewController = segue.destination as! AppViewController
appViewController.app = app
}
}
private extension BrowseViewController