File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -2277,7 +2277,7 @@ + (void)saveAllInBackground:(NSArray *)objects block:(PFBooleanResultBlock)block
22772277 NSArray *uniqueObjects = [PFObjectBatchController uniqueObjectsArrayFromArray: deleteObjects usingFilter: ^BOOL (PFObject *object) {
22782278 return (object.objectId != nil );
22792279 }];
2280- NSMutableArray <BFTask <PFVoid> *> *validationTasks = [NSMutableArray array ];
2280+ NSMutableArray <BFTask<PFVoid> *> *validationTasks = [NSMutableArray array ];
22812281 for (PFObject *object in uniqueObjects) {
22822282 [validationTasks addObject: [object _validateDeleteAsync ]];
22832283 }
Original file line number Diff line number Diff line change @@ -821,7 +821,7 @@ + (void)registerAuthenticationDelegate:(id<PFUserAuthenticationDelegate>)delegat
821821
822822#pragma mark Log In
823823
824- + (BFTask<PFUser *> *)logInWithAuthTypeInBackground : (NSString *)authType
824+ + (BFTask<__kindof PFUser *> *)logInWithAuthTypeInBackground : (NSString *)authType
825825 authData : (NSDictionary <NSString *, NSString *> *)authData {
826826 PFParameterAssert (authType, @" Can't log in without `authType`." );
827827 PFParameterAssert (authData, @" Can't log in without `authData`." );
You can’t perform that action at this time.
0 commit comments