From adc2db9bb29e7f316c46b6de679db1522ffc9cc8 Mon Sep 17 00:00:00 2001 From: 杨锴 <841720330@qq.com> Date: 星期五, 23 八月 2024 11:39:37 +0800 Subject: [PATCH] fix --- Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloader.m | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloader.m b/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloader.m index 777349b..6628afd 100644 --- a/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloader.m +++ b/Pods/SDWebImage/SDWebImage/Core/SDWebImageDownloader.m @@ -27,7 +27,7 @@ @property (nonatomic, strong, nullable, readwrite) NSURL *url; @property (nonatomic, strong, nullable, readwrite) NSURLRequest *request; @property (nonatomic, strong, nullable, readwrite) NSURLResponse *response; -@property (nonatomic, strong, nullable, readwrite) NSURLSessionTaskMetrics *metrics API_AVAILABLE(macosx(10.12), ios(10.0), watchos(3.0), tvos(10.0)); +@property (nonatomic, strong, nullable, readwrite) NSURLSessionTaskMetrics *metrics API_AVAILABLE(macos(10.12), ios(10.0), watchos(3.0), tvos(10.0)); @property (nonatomic, weak, nullable, readwrite) id downloadOperationCancelToken; @property (nonatomic, weak, nullable) NSOperation<SDWebImageDownloaderOperation> *downloadOperation; @property (nonatomic, assign, getter=isCancelled) BOOL cancelled; @@ -534,7 +534,7 @@ } } -- (void)URLSession:(NSURLSession *)session task:(NSURLSessionTask *)task didFinishCollectingMetrics:(NSURLSessionTaskMetrics *)metrics API_AVAILABLE(macosx(10.12), ios(10.0), watchos(3.0), tvos(10.0)) { +- (void)URLSession:(NSURLSession *)session task:(NSURLSessionTask *)task didFinishCollectingMetrics:(NSURLSessionTaskMetrics *)metrics API_AVAILABLE(macos(10.12), ios(10.0), watchos(3.0), tvos(10.0)) { // Identify the operation that runs this task and pass it the delegate method NSOperation<SDWebImageDownloaderOperation> *dataOperation = [self operationWithTask:task]; -- Gitblit v1.7.1