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

Commit df3ab14

Browse files
committed
Added names in .m
Missing names here too.
1 parent b7b3422 commit df3ab14

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

AFOAuth2Manager/AFOAuth2Manager.m

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ - (AFHTTPRequestOperation *)authenticateUsingOAuthWithURLString:(NSString *)URLS
145145
password:(NSString *)password
146146
scope:(NSString *)scope
147147
success:(void (^)(AFOAuthCredential *credential))success
148-
failure:(void (^)(AFHTTPRequestOperation, NSError *error))failure
148+
failure:(void (^)(AFHTTPRequestOperation *operation, NSError *error))failure
149149
{
150150
NSParameterAssert(username);
151151
NSParameterAssert(password);
@@ -164,7 +164,7 @@ - (AFHTTPRequestOperation *)authenticateUsingOAuthWithURLString:(NSString *)URLS
164164
- (AFHTTPRequestOperation *)authenticateUsingOAuthWithURLString:(NSString *)URLString
165165
scope:(NSString *)scope
166166
success:(void (^)(AFOAuthCredential *credential))success
167-
failure:(void (^)(AFHTTPRequestOperation, NSError *error))failure
167+
failure:(void (^)(AFHTTPRequestOperation *operation, NSError *error))failure
168168
{
169169
NSParameterAssert(scope);
170170

@@ -179,7 +179,7 @@ - (AFHTTPRequestOperation *)authenticateUsingOAuthWithURLString:(NSString *)URLS
179179
- (AFHTTPRequestOperation *)authenticateUsingOAuthWithURLString:(NSString *)URLString
180180
refreshToken:(NSString *)refreshToken
181181
success:(void (^)(AFOAuthCredential *credential))success
182-
failure:(void (^)(AFHTTPRequestOperation, NSError *error))failure
182+
failure:(void (^)(AFHTTPRequestOperation *operation, NSError *error))failure
183183
{
184184
NSParameterAssert(refreshToken);
185185

@@ -195,7 +195,7 @@ - (AFHTTPRequestOperation *)authenticateUsingOAuthWithURLString:(NSString *)URLS
195195
code:(NSString *)code
196196
redirectURI:(NSString *)uri
197197
success:(void (^)(AFOAuthCredential *credential))success
198-
failure:(void (^)(AFHTTPRequestOperation, NSError *error))failure
198+
failure:(void (^)(AFHTTPRequestOperation *operation, NSError *error))failure
199199
{
200200
NSParameterAssert(code);
201201
NSParameterAssert(uri);
@@ -212,7 +212,7 @@ - (AFHTTPRequestOperation *)authenticateUsingOAuthWithURLString:(NSString *)URLS
212212
- (AFHTTPRequestOperation *)authenticateUsingOAuthWithURLString:(NSString *)URLString
213213
parameters:(NSDictionary *)parameters
214214
success:(void (^)(AFOAuthCredential *credential))success
215-
failure:(void (^)(AFHTTPRequestOperation, NSError *error))failure
215+
failure:(void (^)(AFHTTPRequestOperation *operation, NSError *error))failure
216216
{
217217
NSMutableDictionary *mutableParameters = [NSMutableDictionary dictionaryWithDictionary:parameters];
218218
if (!self.useHTTPBasicAuthentication) {

0 commit comments

Comments
 (0)