aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objc/imap/MCOIMAPFetchNamespaceOperation.h
diff options
context:
space:
mode:
authorGravatar Hoà V. DINH <dinh.viet.hoa@gmail.com>2015-07-20 12:49:01 -0700
committerGravatar Hoà V. DINH <dinh.viet.hoa@gmail.com>2015-07-20 12:49:01 -0700
commitfaced02c0562bd3379131f42c61fb1c2d901925d (patch)
treeaa6008dd234ed66021aae38c3fc8581764678a57 /src/objc/imap/MCOIMAPFetchNamespaceOperation.h
parent9ca7b99c8c6627d239ff8de157b853a1fed45837 (diff)
parent340f5024cad5c719ab0be2cde79d4922d9ff39ba (diff)
Merge pull request #1182 from lucasderraugh/master
Add nullability annotations
Diffstat (limited to 'src/objc/imap/MCOIMAPFetchNamespaceOperation.h')
-rw-r--r--src/objc/imap/MCOIMAPFetchNamespaceOperation.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/objc/imap/MCOIMAPFetchNamespaceOperation.h b/src/objc/imap/MCOIMAPFetchNamespaceOperation.h
index 5d58f052..ea9e4fc2 100644
--- a/src/objc/imap/MCOIMAPFetchNamespaceOperation.h
+++ b/src/objc/imap/MCOIMAPFetchNamespaceOperation.h
@@ -14,6 +14,7 @@
#import <MailCore/MCOIMAPBaseOperation.h>
+NS_ASSUME_NONNULL_BEGIN
@interface MCOIMAPFetchNamespaceOperation : MCOIMAPBaseOperation
/**
@@ -32,8 +33,9 @@
- On failure, `error` will be set with `MCOErrorDomain` as domain and an
error code available in `MCOConstants.h`, `namespaces` will be nil
*/
-- (void) start:(void (^)(NSError * error, NSDictionary * namespaces))completionBlock;
+- (void) start:(void (^)(NSError * __nullable error, NSDictionary * __nullable namespaces))completionBlock;
@end
+NS_ASSUME_NONNULL_END
#endif