Skip to content

Commit

Permalink
Removed one last PF_GENERIC instance in PFObject.m, make PFUser use _…
Browse files Browse the repository at this point in the history
…_kindof.
  • Loading branch information
richardjrossiii committed Jan 4, 2016
1 parent ae8cd08 commit 5d6baa0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 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 PF_GENERIC(BFTask <PFVoid> *) *validationTasks = [NSMutableArray array];
NSMutableArray<BFTask <PFVoid> *> *validationTasks = [NSMutableArray array];

This comment has been minimized.

Copy link
@nlutsenko

nlutsenko Jan 4, 2016

Contributor

Nit: Remove space after BFTask.

for (PFObject *object in uniqueObjects) {
[validationTasks addObject:[object _validateDeleteAsync]];
}
Expand Down
4 changes: 2 additions & 2 deletions Parse/PFUser.h
Original file line number Diff line number Diff line change
Expand Up @@ -293,8 +293,8 @@ typedef void(^PFUserLogoutResultBlock)(NSError *__nullable error);
@return A `BFTask` that is resolved to `PFUser` when logging in completes.
*/
+ (BFTask<PFUser *> *)logInWithAuthTypeInBackground:(NSString *)authType
authData:(NSDictionary<NSString *, NSString *> *)authData;
+ (BFTask<__kindof PFUser *> *)logInWithAuthTypeInBackground:(NSString *)authType

This comment has been minimized.

Copy link
@nlutsenko

nlutsenko Jan 4, 2016

Contributor

This needs a change PFUser.m as well.

authData:(NSDictionary<NSString *, NSString *> *)authData;

/**
Links this user to a third party authentication library.
Expand Down

0 comments on commit 5d6baa0

Please sign in to comment.