Skip to content

Commit 72d7e96

Browse files
committed
Rename _inflightRequests by request from PR review
1 parent baa344c commit 72d7e96

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Sources/SwiftyStoreKit/ProductsInfoController.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,17 +49,17 @@ class ProductsInfoController: NSObject {
4949
}
5050

5151
// As we can have multiple inflight requests, we store them in a dictionary by product ids
52-
private var _inflightRequests: [Set<String>: InAppProductQuery] = [:]
52+
private var inflightRequestsStorage: [Set<String>: InAppProductQuery] = [:]
5353
private let requestsQueue = DispatchQueue(label: "inflightRequestsQueue", attributes: .concurrent)
5454
private var inflightRequests: [Set<String>: InAppProductQuery] {
5555
get {
5656
requestsQueue.sync {
57-
_inflightRequests
57+
inflightRequestsStorage
5858
}
5959
}
6060
set {
6161
requestsQueue.sync(flags: .barrier) {
62-
self._inflightRequests = newValue
62+
inflightRequestsStorage = newValue
6363
}
6464
}
6565
}

0 commit comments

Comments
 (0)