From 42ef44f67cc461e9fcfbfc98a0bc8224fe760004 Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Sat, 23 Nov 2024 11:56:49 -0800 Subject: [PATCH] Fix whitespace warnings. --- .../Account/Feedly/Models/FeedlyEntryIdentifierProviding.swift | 2 +- .../Account/Feedly/Operations/FeedlyGetEntriesOperation.swift | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Account/Sources/Account/Feedly/Models/FeedlyEntryIdentifierProviding.swift b/Account/Sources/Account/Feedly/Models/FeedlyEntryIdentifierProviding.swift index a87fbc4ea..694ccd07b 100644 --- a/Account/Sources/Account/Feedly/Models/FeedlyEntryIdentifierProviding.swift +++ b/Account/Sources/Account/Feedly/Models/FeedlyEntryIdentifierProviding.swift @@ -13,7 +13,7 @@ protocol FeedlyEntryIdentifierProviding: AnyObject { } final class FeedlyEntryIdentifierProvider: FeedlyEntryIdentifierProviding { - private (set) var entryIds: Set + private(set) var entryIds: Set init(entryIds: Set = Set()) { self.entryIds = entryIds diff --git a/Account/Sources/Account/Feedly/Operations/FeedlyGetEntriesOperation.swift b/Account/Sources/Account/Feedly/Operations/FeedlyGetEntriesOperation.swift index f306792f6..87a17da28 100644 --- a/Account/Sources/Account/Feedly/Operations/FeedlyGetEntriesOperation.swift +++ b/Account/Sources/Account/Feedly/Operations/FeedlyGetEntriesOperation.swift @@ -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?