Fix warnings about extraneous space.

This commit is contained in:
Brent Simmons 2024-11-01 20:52:54 -07:00
parent 19ce65844a
commit b0a008aa3f
2 changed files with 2 additions and 2 deletions

View File

@ -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

View File

@ -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>?