Skip to content

Commit

Permalink
Method signatures fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Дмитрий Куртеев committed Jun 24, 2014
1 parent a498252 commit 8ef50fd
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion AFAbstractRESTClient/AbstractGETAPICall.h
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@

@interface AbstractGETAPICall : NSObject

- (void) executeAPICallWithSuccessBlock:(void (^)(id responseObject)) blockSuccess failure:(void (^)(NSError *error, id responseObject)) blockFailure;
- (void) executeAPICallWithSuccessBlock:(void (^)(NSHTTPURLResponse *response, id responseObject)) blockSuccess failure:(void (^)(NSError *error, id responseObject)) blockFailure;

@end
2 changes: 1 addition & 1 deletion AFAbstractRESTClient/AbstractPOSTAPICall.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@ extern NSString *const kServerURLString;

@interface AbstractPOSTAPICall : NSObject

- (void) executeAPICallWithSuccessBlock:(void (^)(id responseObject)) blockSuccess failure:(void (^)(AFHTTPRequestOperation *operation, NSError *error)) blockFailure progress: (void (^)(long long totalBytesWritten, long long totalBytesExpectedToWrite)) blockProgress;
- (void) executeAPICallWithSuccessBlock:(void (^)(NSHTTPURLResponse *response, id responseObject)) blockSuccess failure:(void (^)(AFHTTPRequestOperation *operation, NSError *error)) blockFailure progress: (void (^)(long long totalBytesWritten, long long totalBytesExpectedToWrite)) blockProgress;

@end

0 comments on commit 8ef50fd

Please sign in to comment.