Skip to content

Commit

Permalink
Fix spacing with declaration in PFObject.m, use __kindof in PFUser.m
Browse files Browse the repository at this point in the history
  • Loading branch information
richardjrossiii committed Jan 5, 2016
1 parent 5d6baa0 commit 0a15ffe
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Parse/PFObject.m
Original file line number Diff line number Diff line change
Expand Up @@ -2277,7 +2277,7 @@ + (void)saveAllInBackground:(NSArray *)objects block:(PFBooleanResultBlock)block
NSArray *uniqueObjects = [PFObjectBatchController uniqueObjectsArrayFromArray:deleteObjects usingFilter:^BOOL(PFObject *object) {
return (object.objectId != nil);
}];
NSMutableArray<BFTask <PFVoid> *> *validationTasks = [NSMutableArray array];
NSMutableArray<BFTask<PFVoid> *> *validationTasks = [NSMutableArray array];
for (PFObject *object in uniqueObjects) {
[validationTasks addObject:[object _validateDeleteAsync]];
}
Expand Down
2 changes: 1 addition & 1 deletion Parse/PFUser.m
Original file line number Diff line number Diff line change
Expand Up @@ -821,7 +821,7 @@ + (void)registerAuthenticationDelegate:(id<PFUserAuthenticationDelegate>)delegat

#pragma mark Log In

+ (BFTask<PFUser *> *)logInWithAuthTypeInBackground:(NSString *)authType
+ (BFTask<__kindof PFUser *> *)logInWithAuthTypeInBackground:(NSString *)authType
authData:(NSDictionary<NSString *, NSString *> *)authData {
PFParameterAssert(authType, @"Can't log in without `authType`.");
PFParameterAssert(authData, @"Can't log in without `authData`.");
Expand Down

0 comments on commit 0a15ffe

Please sign in to comment.