Authored by Martin Blech

Synthesize `executing` and `finished` properties.

It wouldn't build on Xcode 6 otherwise.
@@ -39,6 +39,9 @@ @@ -39,6 +39,9 @@
39 BOOL responseFromCached; 39 BOOL responseFromCached;
40 } 40 }
41 41
  42 +@synthesize executing = _executing;
  43 +@synthesize finished = _finished;
  44 +
42 - (id)initWithRequest:(NSURLRequest *)request options:(SDWebImageDownloaderOptions)options progress:(void (^)(NSInteger, NSInteger))progressBlock completed:(void (^)(UIImage *, NSData *, NSError *, BOOL))completedBlock cancelled:(void (^)())cancelBlock { 45 - (id)initWithRequest:(NSURLRequest *)request options:(SDWebImageDownloaderOptions)options progress:(void (^)(NSInteger, NSInteger))progressBlock completed:(void (^)(UIImage *, NSData *, NSError *, BOOL))completedBlock cancelled:(void (^)())cancelBlock {
43 if ((self = [super init])) { 46 if ((self = [super init])) {
44 _request = request; 47 _request = request;