Skip to content

Commit

Permalink
Rollback unneccessary changes
Browse files Browse the repository at this point in the history
  • Loading branch information
calvincestari committed Dec 21, 2023
1 parent 5288e19 commit 712589c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions apollo-ios/Sources/ApolloAPI/DataDict.swift
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,15 @@ public struct DataDict: Hashable {
///
/// Each `ObjectIdentifier` in the set corresponds to a specific `SelectionSet` type.
@inlinable public var _fulfilledFragments: Set<ObjectIdentifier> {
get { _storage.fulfilledFragments }
_storage.fulfilledFragments
}

/// The set of fragments that have not yet been fulfilled and will be delivered in a future
/// response.
///
/// Each `ObjectIdentifier` in the set corresponds to a specific `SelectionSet` type.
@inlinable public var _deferredFragments: Set<ObjectIdentifier> {
get { _storage.deferredFragments }
_storage.deferredFragments
}

public init(
Expand Down Expand Up @@ -120,8 +120,8 @@ public struct DataDict: Hashable {
// MARK: - DataDict._Storage
@usableFromInline class _Storage: Hashable {
@usableFromInline var data: [String: AnyHashable]
@usableFromInline var fulfilledFragments: Set<ObjectIdentifier>
@usableFromInline var deferredFragments: Set<ObjectIdentifier>
@usableFromInline let fulfilledFragments: Set<ObjectIdentifier>
@usableFromInline let deferredFragments: Set<ObjectIdentifier>

init(
data: [String: AnyHashable],
Expand Down

0 comments on commit 712589c

Please sign in to comment.