From 5f239c07b8f488721abe3a025a72a8baa9854cce Mon Sep 17 00:00:00 2001 From: Philipp Schmid Date: Tue, 3 Jun 2014 22:42:15 +0200 Subject: [PATCH] Fix getter names. Fixes commit: 097b502eae MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The getters of the properties “executing” and “finished” both use custom getter names. 097b502eae implemented the wrong getter names without the “is” prefix. --- SDWebImage/SDWebImageDownloaderOperation.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SDWebImage/SDWebImageDownloaderOperation.m b/SDWebImage/SDWebImageDownloaderOperation.m index c0ec267c..5d9979ea 100644 --- a/SDWebImage/SDWebImageDownloaderOperation.m +++ b/SDWebImage/SDWebImageDownloaderOperation.m @@ -176,7 +176,7 @@ [self didChangeValueForKey:@"isFinished"]; } -- (BOOL)finished +- (BOOL)isFinished { return _finished; } @@ -187,7 +187,7 @@ [self didChangeValueForKey:@"isExecuting"]; } -- (BOOL)executing +- (BOOL)isExecuting { return _executing; }