Make currentArticleRow private

This commit is contained in:
Maurice Parker 2019-09-11 09:15:22 -05:00
parent 8545252265
commit 19c8f9a067
1 changed files with 1 additions and 1 deletions

View File

@ -217,7 +217,7 @@ class SceneCoordinator: NSObject, UndoableCommandRunner, UnreadCountProvider {
private(set) var articles = ArticleArray()
var currentArticle: Article?
var currentArticleRow: Int? {
private var currentArticleRow: Int? {
guard let article = currentArticle else { return nil }
return articles.firstIndex(of: article)
}