Skip to content
This repository was archived by the owner on May 20, 2025. It is now read-only.

Commit 9ad030d

Browse files
committed
remove (nonatomic)
1 parent 7823807 commit 9ad030d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

CodePush.h

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,12 +31,12 @@
3131

3232
@interface CodePushDownloadHandler : NSObject<NSURLConnectionDelegate>
3333

34-
@property (nonatomic, strong) NSOutputStream *outputFileStream;
34+
@property (strong) NSOutputStream *outputFileStream;
3535
@property long expectedContentLength;
3636
@property long receivedContentLength;
37-
@property (copy)void (^progressCallback)(long, long);
38-
@property (copy)void (^doneCallback)();
39-
@property (copy)void (^failCallback)(NSError *err);
37+
@property (copy) void (^progressCallback)(long, long);
38+
@property (copy) void (^doneCallback)();
39+
@property (copy) void (^failCallback)(NSError *err);
4040

4141
- (id)init:(NSString *)downloadFilePath
4242
progressCallback:(void (^)(long, long))progressCallback

0 commit comments

Comments
 (0)