Remove some old instances of fileprivate.
This commit is contained in:
parent
2d79253be5
commit
8cb3658a78
|
@ -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
|
||||
|
|
|
@ -17,7 +17,7 @@ class HTMLFeedFinder {
|
|||
return Set(feedSpecifiersDictionary.values)
|
||||
}
|
||||
|
||||
fileprivate var feedSpecifiersDictionary = [String: FeedSpecifier]()
|
||||
private var feedSpecifiersDictionary = [String: FeedSpecifier]()
|
||||
|
||||
init(parserData: ParserData) {
|
||||
|
||||
|
|
Loading…
Reference in New Issue