Fix warnings about extraneous space.
This commit is contained in:
parent
19ce65844a
commit
b0a008aa3f
|
@ -13,7 +13,7 @@ protocol FeedlyEntryIdentifierProviding: AnyObject {
|
|||
}
|
||||
|
||||
final class FeedlyEntryIdentifierProvider: FeedlyEntryIdentifierProviding {
|
||||
private (set) var entryIds: Set<String>
|
||||
private(set) var entryIds: Set<String>
|
||||
|
||||
init(entryIds: Set<String> = Set()) {
|
||||
self.entryIds = entryIds
|
||||
|
|
|
@ -25,7 +25,7 @@ final class FeedlyGetEntriesOperation: FeedlyOperation, FeedlyEntryProviding, Fe
|
|||
self.log = log
|
||||
}
|
||||
|
||||
private (set) var entries = [FeedlyEntry]()
|
||||
private(set) var entries = [FeedlyEntry]()
|
||||
|
||||
private var storedParsedEntries: Set<ParsedItem>?
|
||||
|
||||
|
|
Loading…
Reference in New Issue