Making AFHTTPRequestOperation.HTTPError atomic.

This commit is contained in:
Oliver Letterer 2013-08-15 22:36:48 +02:00
parent ac330c84c8
commit e867c922a7

View file

@ -110,7 +110,7 @@ static void AFSwizzleClassMethodWithClassAndSelectorUsingBlock(Class klass, SEL
@interface AFHTTPRequestOperation () @interface AFHTTPRequestOperation ()
@property (readwrite, nonatomic, strong) NSURLRequest *request; @property (readwrite, nonatomic, strong) NSURLRequest *request;
@property (readwrite, nonatomic, strong) NSHTTPURLResponse *response; @property (readwrite, nonatomic, strong) NSHTTPURLResponse *response;
@property (readwrite, nonatomic, strong) NSError *HTTPError; @property (readwrite, strong) NSError *HTTPError;
@end @end
@implementation AFHTTPRequestOperation @implementation AFHTTPRequestOperation