File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff 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 }
You can’t perform that action at this time.
0 commit comments