aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objc/imap/MCOIMAPAppendMessageOperation.h
diff options
context:
space:
mode:
authorGravatar Lucas Derraugh <lucasderraugh@gmail.com>2015-07-19 03:05:06 -0700
committerGravatar Lucas Derraugh <lucasderraugh@gmail.com>2015-07-19 03:05:06 -0700
commite9389f70b482c33d09d904932d3aa6e8f4bb67ba (patch)
treebdcda09a41c60848feb8a11dbe96237d41f38050 /src/objc/imap/MCOIMAPAppendMessageOperation.h
parentb93062e0e918f7924fa48724fdbf53d91aa348bb (diff)
Add nullability annotations
Diffstat (limited to 'src/objc/imap/MCOIMAPAppendMessageOperation.h')
-rw-r--r--src/objc/imap/MCOIMAPAppendMessageOperation.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/objc/imap/MCOIMAPAppendMessageOperation.h b/src/objc/imap/MCOIMAPAppendMessageOperation.h
index 1e5fbd39..ec1602a3 100644
--- a/src/objc/imap/MCOIMAPAppendMessageOperation.h
+++ b/src/objc/imap/MCOIMAPAppendMessageOperation.h
@@ -15,6 +15,7 @@
#import <MailCore/MCOIMAPBaseOperation.h>
#import <MailCore/MCOConstants.h>
+NS_ASSUME_NONNULL_BEGIN
@interface MCOIMAPAppendMessageOperation : MCOIMAPBaseOperation
@property (nonatomic, assign) time_t date;
@@ -35,8 +36,9 @@
- On failure, `error` will be set with `MCOErrorDomain` as domain and an
error code available in MCOConstants.h, `createdUID` will be zero.
*/
-- (void) start:(void (^)(NSError * error, uint32_t createdUID))completionBlock;
+- (void) start:(void (^)(NSError * __nullable error, uint32_t createdUID))completionBlock;
@end
+NS_ASSUME_NONNULL_END
#endif