This repository was archived by the owner on Jun 13, 2023. It is now read-only.
File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 134134 isa = PBXGroup;
135135 children = (
136136 F5DC9D381BD9BAFC00E8FF07 /* Internal */,
137- 81464FC51CA31DA0000235E7 /* Resources */,
138137 F5591BA31BD720E10072F966 /* Client.swift */,
139138 F534A5B11BDAFE0200CBD11A /* Subscription.swift */,
140139 F54D58B51C8E33D9009F8D6C /* ObjCCompat.swift */,
141140 F59CA92E1C8E496200329737 /* Errors.swift */,
142141 0632EDD31CA1A6DB00DD3CB8 /* Parse+LiveQuery.swift */,
143142 F5A88F491C9B6EBA002F0E0D /* PFQuery+Subscribe.swift */,
143+ 81464FC51CA31DA0000235E7 /* Resources */,
144144 );
145145 path = ParseLiveQuery;
146146 sourceTree = "<group>";
Original file line number Diff line number Diff line change @@ -33,9 +33,9 @@ func swiftTask(task: BFTask) -> Task<AnyObject> {
3333 if task. cancelled {
3434 taskCompletionSource. tryCancel ( )
3535 } else if let error = task. error where task. faulted {
36- taskCompletionSource. trySetError ( error)
36+ taskCompletionSource. trySet ( error : error)
3737 } else if let result = task. result {
38- taskCompletionSource. trySetResult ( result)
38+ taskCompletionSource. trySet ( result : result)
3939 } else {
4040 fatalError ( " Unknown task state " )
4141 }
You can’t perform that action at this time.
0 commit comments