Skip to content

Commit 465db9d

Browse files
Fix spacing with declaration in PFObject.m, use __kindof in PFUser.m
1 parent f45d995 commit 465db9d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Parse/PFObject.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
}

Parse/PFUser.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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`.");

0 commit comments

Comments
 (0)