Fix code format
This commit is contained in:
parent
94acdcd527
commit
95ef42d48c
|
@ -186,7 +186,8 @@ static SDWebImageManager *instance;
|
||||||
// Delegates notified, remove downloader and delegate
|
// Delegates notified, remove downloader and delegate
|
||||||
// The delegate callbacks above may have modified the arrays, hence we search for the correct index
|
// The delegate callbacks above may have modified the arrays, hence we search for the correct index
|
||||||
int idx = [downloadDelegates indexOfObjectIdenticalTo:delegate];
|
int idx = [downloadDelegates indexOfObjectIdenticalTo:delegate];
|
||||||
if (idx != NSNotFound) {
|
if (idx != NSNotFound)
|
||||||
|
{
|
||||||
[downloaders removeObjectAtIndex:idx];
|
[downloaders removeObjectAtIndex:idx];
|
||||||
[downloadInfo removeObjectAtIndex:idx];
|
[downloadInfo removeObjectAtIndex:idx];
|
||||||
[downloadDelegates removeObjectAtIndex:idx];
|
[downloadDelegates removeObjectAtIndex:idx];
|
||||||
|
@ -292,7 +293,8 @@ static SDWebImageManager *instance;
|
||||||
// Delegates notified, remove url and delegate
|
// Delegates notified, remove url and delegate
|
||||||
// The delegate callbacks above may have modified the arrays, hence we search for the correct index
|
// The delegate callbacks above may have modified the arrays, hence we search for the correct index
|
||||||
int removeIdx = [self indexOfDelegate:delegate waitingForURL:url];
|
int removeIdx = [self indexOfDelegate:delegate waitingForURL:url];
|
||||||
if (removeIdx != NSNotFound) {
|
if (removeIdx != NSNotFound)
|
||||||
|
{
|
||||||
[cacheDelegates removeObjectAtIndex:removeIdx];
|
[cacheDelegates removeObjectAtIndex:removeIdx];
|
||||||
[cacheURLs removeObjectAtIndex:removeIdx];
|
[cacheURLs removeObjectAtIndex:removeIdx];
|
||||||
}
|
}
|
||||||
|
@ -346,7 +348,8 @@ static SDWebImageManager *instance;
|
||||||
NSMutableArray *notifiedDelegates = [NSMutableArray arrayWithCapacity:downloaders.count];
|
NSMutableArray *notifiedDelegates = [NSMutableArray arrayWithCapacity:downloaders.count];
|
||||||
|
|
||||||
BOOL found = YES;
|
BOOL found = YES;
|
||||||
while (found) {
|
while (found)
|
||||||
|
{
|
||||||
found = NO;
|
found = NO;
|
||||||
assert(downloaders.count == downloadDelegates.count);
|
assert(downloaders.count == downloadDelegates.count);
|
||||||
assert(downloaders.count == downloadInfo.count);
|
assert(downloaders.count == downloadInfo.count);
|
||||||
|
@ -354,7 +357,8 @@ static SDWebImageManager *instance;
|
||||||
for (NSInteger i=count-1; i>=0; --i)
|
for (NSInteger i=count-1; i>=0; --i)
|
||||||
{
|
{
|
||||||
SDWebImageDownloader *aDownloader = [downloaders objectAtIndex:i];
|
SDWebImageDownloader *aDownloader = [downloaders objectAtIndex:i];
|
||||||
if (aDownloader != downloader) {
|
if (aDownloader != downloader)
|
||||||
|
{
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -362,7 +366,8 @@ static SDWebImageManager *instance;
|
||||||
SDWIRetain(delegate);
|
SDWIRetain(delegate);
|
||||||
SDWIAutorelease(delegate);
|
SDWIAutorelease(delegate);
|
||||||
|
|
||||||
if ([notifiedDelegates containsObject:delegate]) {
|
if ([notifiedDelegates containsObject:delegate])
|
||||||
|
{
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
// Keep track of delegates notified
|
// Keep track of delegates notified
|
||||||
|
@ -397,14 +402,17 @@ static SDWebImageManager *instance;
|
||||||
SDWIRetain(downloader);
|
SDWIRetain(downloader);
|
||||||
SDWebImageOptions options = [[downloader.userInfo objectForKey:@"options"] intValue];
|
SDWebImageOptions options = [[downloader.userInfo objectForKey:@"options"] intValue];
|
||||||
BOOL found = YES;
|
BOOL found = YES;
|
||||||
while (found) {
|
while (found)
|
||||||
|
{
|
||||||
found = NO;
|
found = NO;
|
||||||
assert(downloaders.count == downloadDelegates.count);
|
assert(downloaders.count == downloadDelegates.count);
|
||||||
assert(downloaders.count == downloadInfo.count);
|
assert(downloaders.count == downloadInfo.count);
|
||||||
NSInteger count = downloaders.count;
|
NSInteger count = downloaders.count;
|
||||||
for (NSInteger i=count-1; i>=0; --i) {
|
for (NSInteger i=count-1; i>=0; --i)
|
||||||
|
{
|
||||||
SDWebImageDownloader *aDownloader = [downloaders objectAtIndex:i];
|
SDWebImageDownloader *aDownloader = [downloaders objectAtIndex:i];
|
||||||
if (aDownloader != downloader) {
|
if (aDownloader != downloader)
|
||||||
|
{
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
id<SDWebImageManagerDelegate> delegate = [downloadDelegates objectAtIndex:i];
|
id<SDWebImageManagerDelegate> delegate = [downloadDelegates objectAtIndex:i];
|
||||||
|
@ -502,7 +510,8 @@ static SDWebImageManager *instance;
|
||||||
|
|
||||||
// Notify all the downloadDelegates with this downloader
|
// Notify all the downloadDelegates with this downloader
|
||||||
BOOL found = YES;
|
BOOL found = YES;
|
||||||
while (found) {
|
while (found)
|
||||||
|
{
|
||||||
found = NO;
|
found = NO;
|
||||||
assert(downloaders.count == downloadDelegates.count);
|
assert(downloaders.count == downloadDelegates.count);
|
||||||
assert(downloaders.count == downloadInfo.count);
|
assert(downloaders.count == downloadInfo.count);
|
||||||
|
@ -510,7 +519,8 @@ static SDWebImageManager *instance;
|
||||||
for (NSInteger i=count-1 ; i>=0; --i)
|
for (NSInteger i=count-1 ; i>=0; --i)
|
||||||
{
|
{
|
||||||
SDWebImageDownloader *aDownloader = [downloaders objectAtIndex:i];
|
SDWebImageDownloader *aDownloader = [downloaders objectAtIndex:i];
|
||||||
if (aDownloader != downloader) {
|
if (aDownloader != downloader)
|
||||||
|
{
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
id<SDWebImageManagerDelegate> delegate = [downloadDelegates objectAtIndex:i];
|
id<SDWebImageManagerDelegate> delegate = [downloadDelegates objectAtIndex:i];
|
||||||
|
|
Loading…
Reference in New Issue