File tree Expand file tree Collapse file tree 1 file changed +1
-14
lines changed Expand file tree Collapse file tree 1 file changed +1
-14
lines changed Original file line number Diff line number Diff line change 12
12
#import < ImageIO/ImageIO.h>
13
13
#import " SDWebImageManager.h"
14
14
15
- @interface SDWebImageDownloaderOperation () <NSURLConnectionDataDelegate > {
16
- BOOL _executing;
17
- BOOL _finished;
18
- }
15
+ @interface SDWebImageDownloaderOperation () <NSURLConnectionDataDelegate >
19
16
20
17
@property (copy , nonatomic ) SDWebImageDownloaderProgressBlock progressBlock;
21
18
@property (copy , nonatomic ) SDWebImageDownloaderCompletedBlock completedBlock;
@@ -181,22 +178,12 @@ - (void)setFinished:(BOOL)finished {
181
178
[self didChangeValueForKey: @" isFinished" ];
182
179
}
183
180
184
- - (BOOL )isFinished
185
- {
186
- return _finished;
187
- }
188
-
189
181
- (void )setExecuting : (BOOL )executing {
190
182
[self willChangeValueForKey: @" isExecuting" ];
191
183
_executing = executing;
192
184
[self didChangeValueForKey: @" isExecuting" ];
193
185
}
194
186
195
- - (BOOL )isExecuting
196
- {
197
- return _executing;
198
- }
199
-
200
187
- (BOOL )isConcurrent {
201
188
return YES ;
202
189
}
You can’t perform that action at this time.
0 commit comments