Remove strong references to MastodonController

This commit is contained in:
Shadowfacts 2020-05-13 18:57:04 -04:00
parent e581f384e4
commit 0582812563
Signed by: shadowfacts
GPG Key ID: 94A5AB95422746E5
4 changed files with 4 additions and 4 deletions

View File

@ -15,7 +15,7 @@ class ConversationTableViewController: EnhancedTableViewController {
static let showPostsImage = UIImage(systemName: "eye.fill")!
static let hidePostsImage = UIImage(systemName: "eye.slash.fill")!
let mastodonController: MastodonController
weak var mastodonController: MastodonController!
let mainStatusID: String
let mainStatusState: StatusState

View File

@ -12,7 +12,7 @@ import Pachyderm
class ExploreViewController: EnhancedTableViewController {
let mastodonController: MastodonController
weak var mastodonController: MastodonController!
var dataSource: DataSource!

View File

@ -17,7 +17,7 @@ class NotificationsTableViewController: EnhancedTableViewController {
private let followRequestCell = "followRequestCell"
private let unknownCell = "unknownCell"
let mastodonController: MastodonController
weak var mastodonController: MastodonController!
let excludedTypes: [Pachyderm.Notification.Kind]
let groupTypes = [Notification.Kind.favourite, .reblog, .follow]

View File

@ -14,7 +14,7 @@ class StatusActionAccountListTableViewController: EnhancedTableViewController {
private let statusCell = "statusCell"
private let accountCell = "accountCell"
let mastodonController: MastodonController
weak var mastodonController: MastodonController!
let actionType: ActionType
let statusID: String