Skip to content
This repository has been archived by the owner on Jan 17, 2023. It is now read-only.

Commit

Permalink
Added names in .m
Browse files Browse the repository at this point in the history
Missing names here too.
  • Loading branch information
nickhrsn committed Dec 17, 2015
1 parent b7b3422 commit df3ab14
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions AFOAuth2Manager/AFOAuth2Manager.m
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ - (AFHTTPRequestOperation *)authenticateUsingOAuthWithURLString:(NSString *)URLS
password:(NSString *)password
scope:(NSString *)scope
success:(void (^)(AFOAuthCredential *credential))success
failure:(void (^)(AFHTTPRequestOperation, NSError *error))failure
failure:(void (^)(AFHTTPRequestOperation *operation, NSError *error))failure
{
NSParameterAssert(username);
NSParameterAssert(password);
Expand All @@ -164,7 +164,7 @@ - (AFHTTPRequestOperation *)authenticateUsingOAuthWithURLString:(NSString *)URLS
- (AFHTTPRequestOperation *)authenticateUsingOAuthWithURLString:(NSString *)URLString
scope:(NSString *)scope
success:(void (^)(AFOAuthCredential *credential))success
failure:(void (^)(AFHTTPRequestOperation, NSError *error))failure
failure:(void (^)(AFHTTPRequestOperation *operation, NSError *error))failure
{
NSParameterAssert(scope);

Expand All @@ -179,7 +179,7 @@ - (AFHTTPRequestOperation *)authenticateUsingOAuthWithURLString:(NSString *)URLS
- (AFHTTPRequestOperation *)authenticateUsingOAuthWithURLString:(NSString *)URLString
refreshToken:(NSString *)refreshToken
success:(void (^)(AFOAuthCredential *credential))success
failure:(void (^)(AFHTTPRequestOperation, NSError *error))failure
failure:(void (^)(AFHTTPRequestOperation *operation, NSError *error))failure
{
NSParameterAssert(refreshToken);

Expand All @@ -195,7 +195,7 @@ - (AFHTTPRequestOperation *)authenticateUsingOAuthWithURLString:(NSString *)URLS
code:(NSString *)code
redirectURI:(NSString *)uri
success:(void (^)(AFOAuthCredential *credential))success
failure:(void (^)(AFHTTPRequestOperation, NSError *error))failure
failure:(void (^)(AFHTTPRequestOperation *operation, NSError *error))failure
{
NSParameterAssert(code);
NSParameterAssert(uri);
Expand All @@ -212,7 +212,7 @@ - (AFHTTPRequestOperation *)authenticateUsingOAuthWithURLString:(NSString *)URLS
- (AFHTTPRequestOperation *)authenticateUsingOAuthWithURLString:(NSString *)URLString
parameters:(NSDictionary *)parameters
success:(void (^)(AFOAuthCredential *credential))success
failure:(void (^)(AFHTTPRequestOperation, NSError *error))failure
failure:(void (^)(AFHTTPRequestOperation *operation, NSError *error))failure
{
NSMutableDictionary *mutableParameters = [NSMutableDictionary dictionaryWithDictionary:parameters];
if (!self.useHTTPBasicAuthentication) {
Expand Down

0 comments on commit df3ab14

Please sign in to comment.