From 9d54318bafeaf36ed315be475b73183470f6aa55 Mon Sep 17 00:00:00 2001 From: Calvin Cestari Date: Thu, 21 Dec 2023 13:02:07 -0800 Subject: [PATCH] Rollback unneccessary changes --- apollo-ios/Sources/ApolloAPI/DataDict.swift | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/apollo-ios/Sources/ApolloAPI/DataDict.swift b/apollo-ios/Sources/ApolloAPI/DataDict.swift index 2e06695dd..5cd254f56 100644 --- a/apollo-ios/Sources/ApolloAPI/DataDict.swift +++ b/apollo-ios/Sources/ApolloAPI/DataDict.swift @@ -41,7 +41,7 @@ public struct DataDict: Hashable { /// /// Each `ObjectIdentifier` in the set corresponds to a specific `SelectionSet` type. @inlinable public var _fulfilledFragments: Set { - get { _storage.fulfilledFragments } + _storage.fulfilledFragments } /// The set of fragments that have not yet been fulfilled and will be delivered in a future @@ -49,7 +49,7 @@ public struct DataDict: Hashable { /// /// Each `ObjectIdentifier` in the set corresponds to a specific `SelectionSet` type. @inlinable public var _deferredFragments: Set { - get { _storage.deferredFragments } + _storage.deferredFragments } public init( @@ -120,8 +120,8 @@ public struct DataDict: Hashable { // MARK: - DataDict._Storage @usableFromInline class _Storage: Hashable { @usableFromInline var data: [String: AnyHashable] - @usableFromInline var fulfilledFragments: Set - @usableFromInline var deferredFragments: Set + @usableFromInline let fulfilledFragments: Set + @usableFromInline let deferredFragments: Set init( data: [String: AnyHashable],