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 { class FeedFinder {
fileprivate weak var delegate: FeedFinderDelegate? private weak var delegate: FeedFinderDelegate?
fileprivate var feedSpecifiers = [String: FeedSpecifier]() private var feedSpecifiers = [String: FeedSpecifier]()
fileprivate var didNotifyDelegate = false private var didNotifyDelegate = false
var initialDownloadError: Error? var initialDownloadError: Error?
var initialDownloadStatusCode = -1 var initialDownloadStatusCode = -1

View File

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