Skip to content

Commit

Permalink
Remove extra qualityOfService set
Browse files Browse the repository at this point in the history
  • Loading branch information
garrettmoon committed Aug 1, 2015
1 parent 144327a commit 5036a71
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions Pod/Classes/PINRemoteImageManager.m
Original file line number Diff line number Diff line change
Expand Up @@ -1244,9 +1244,8 @@ - (void)pin_addOperationWithQueuePriority:(PINRemoteImageManagerPriority)priorit
{
NSBlockOperation *operation = [NSBlockOperation blockOperationWithBlock:block];
operation.queuePriority = operationPriorityWithImageManagerPriority(priority);
operation.qualityOfService = NSOperationQualityOfServiceBackground;
#if defined(__IPHONE_8_0)
operation.qualityOfService = NSQualityOfServiceBackground;
operation.qualityOfService = NSOperationQualityOfServiceBackground;
#else
operation.threadPriority = 0.2;
#endif
Expand Down

0 comments on commit 5036a71

Please sign in to comment.