From e867c922a7e2d37b92fd6f5da17d6aa9d99badc5 Mon Sep 17 00:00:00 2001 From: Oliver Letterer Date: Thu, 15 Aug 2013 22:36:48 +0200 Subject: [PATCH] Making AFHTTPRequestOperation.HTTPError atomic. --- AFNetworking/AFHTTPRequestOperation.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/AFNetworking/AFHTTPRequestOperation.m b/AFNetworking/AFHTTPRequestOperation.m index be49c21..47ef4bc 100644 --- a/AFNetworking/AFHTTPRequestOperation.m +++ b/AFNetworking/AFHTTPRequestOperation.m @@ -110,7 +110,7 @@ static void AFSwizzleClassMethodWithClassAndSelectorUsingBlock(Class klass, SEL @interface AFHTTPRequestOperation () @property (readwrite, nonatomic, strong) NSURLRequest *request; @property (readwrite, nonatomic, strong) NSHTTPURLResponse *response; -@property (readwrite, nonatomic, strong) NSError *HTTPError; +@property (readwrite, strong) NSError *HTTPError; @end @implementation AFHTTPRequestOperation