From d0f8571dd216cc39b14612c12b88fbcaef5a2825 Mon Sep 17 00:00:00 2001 From: Matthew Knippen Date: Tue, 26 Nov 2013 21:29:10 -0600 Subject: [PATCH] matched coding conventions --- SDWebImage/SDWebImageDownloader.m | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/SDWebImage/SDWebImageDownloader.m b/SDWebImage/SDWebImageDownloader.m index d8fb9ca..dcc303e 100644 --- a/SDWebImage/SDWebImageDownloader.m +++ b/SDWebImage/SDWebImageDownloader.m @@ -104,7 +104,8 @@ static NSString *const kCompletedCallbackKey = @"completed"; _downloadQueue.maxConcurrentOperationCount = maxConcurrentDownloads; } -- (NSUInteger)currentDownloadCount { +- (NSUInteger)currentDownloadCount +{ return _downloadQueue.operationCount; }