Skip to content
This repository has been archived by the owner on Jul 28, 2020. It is now read-only.

Commit

Permalink
should be self
Browse files Browse the repository at this point in the history
  • Loading branch information
zbowling committed Oct 21, 2011
1 parent 23ac76c commit d6ffe69
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion AFNetworking/AFJSONRequestOperation.m
Expand Up @@ -54,7 +54,7 @@ + (AFJSONRequestOperation *)JSONRequestOperationWithRequest:(NSURLRequest *)urlR
success:(AFJSONRequestOperationSuccessBlock)success
failure:(AFJSONRequestOperationFailureBlock)failure
{
AFJSONRequestOperation *operation = [[[AFJSONRequestOperation alloc] initWithRequest:urlRequest] autorelease];
AFJSONRequestOperation *operation = [[[self alloc] initWithRequest:urlRequest] autorelease];
operation.successBlock = success;
operation.failureBlock = failure;
return operation;
Expand Down

0 comments on commit d6ffe69

Please sign in to comment.