Minor Reformatting

This commit is contained in:
Mattt Thompson 2012-10-05 09:59:34 -07:00
parent c091bb5ebe
commit c830a82080

View file

@ -237,10 +237,10 @@ static void AFSwizzleClassMethodWithClassAndSelectorUsingBlock(Class klass, SEL
- (void)setCompletionBlockWithSuccess:(void (^)(AFHTTPRequestOperation *operation, id responseObject))success
failure:(void (^)(AFHTTPRequestOperation *operation, NSError *error))failure
{
// completion block is manually nilled out in AFURLConnectionOperation to break the retain cycle.
// completionBlock is manually nilled out in AFURLConnectionOperation to break the retain cycle.
#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Warc-retain-cycles"
self.completionBlock = ^ {
self.completionBlock = ^{
if ([self isCancelled]) {
return;
}