From b0a008aa3fddf7fc911c0f2dd136e4875055f180 Mon Sep 17 00:00:00 2001 From: Brent Simmons Date: Fri, 1 Nov 2024 20:52:54 -0700 Subject: [PATCH] Fix warnings about extraneous space. --- .../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?