Remove some old instances of fileprivate.

This commit is contained in:
Brent Simmons 2019-02-09 22:22:12 -08:00
parent 2d79253be5
commit 8cb3658a78
2 changed files with 4 additions and 4 deletions

View File

@ -18,9 +18,9 @@ protocol FeedFinderDelegate: class {
class FeedFinder {
fileprivate weak var delegate: FeedFinderDelegate?
fileprivate var feedSpecifiers = [String: FeedSpecifier]()
fileprivate var didNotifyDelegate = false
private weak var delegate: FeedFinderDelegate?
private var feedSpecifiers = [String: FeedSpecifier]()
private var didNotifyDelegate = false
var initialDownloadError: Error?
var initialDownloadStatusCode = -1

View File

@ -17,7 +17,7 @@ class HTMLFeedFinder {
return Set(feedSpecifiersDictionary.values)
}
fileprivate var feedSpecifiersDictionary = [String: FeedSpecifier]()
private var feedSpecifiersDictionary = [String: FeedSpecifier]()
init(parserData: ParserData) {