Remove some old instances of fileprivate.
This commit is contained in:
parent
2d79253be5
commit
8cb3658a78
|
@ -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
|
||||||
|
|
|
@ -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) {
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue