diff options
author | Hoa V. DINH <dinh.viet.hoa@gmail.com> | 2016-01-03 16:37:08 -0800 |
---|---|---|
committer | Hoa V. DINH <dinh.viet.hoa@gmail.com> | 2016-01-03 16:37:08 -0800 |
commit | f6fb86266825752b8723c4f125bef444fd167cb2 (patch) | |
tree | 59dc903cae1fdfe9eb728104ae9918143d91bf1a | |
parent | 5d457fe0c3aa056d3964eddd274df5aafd9b5f1b (diff) |
Fixed warnings
-rw-r--r-- | src/objc/nntp/MCONNTPSession.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/objc/nntp/MCONNTPSession.h b/src/objc/nntp/MCONNTPSession.h index ce382577..29fe18af 100644 --- a/src/objc/nntp/MCONNTPSession.h +++ b/src/objc/nntp/MCONNTPSession.h @@ -6,8 +6,6 @@ // Copyright (c) 2014 MailCore. All rights reserved. // -#import <Foundation/Foundation.h> - #ifndef MAILCORE_MCONNTPSESSION_H #define MAILCORE_MCONNTPSESSION_H @@ -27,6 +25,7 @@ /** This class implements asynchronous access to the NNTP protocol.*/ +NS_ASSUME_NONNULL_BEGIN @interface MCONNTPSession : NSObject /** This is the hostname of the NNTP server to connect to.*/ @@ -203,5 +202,6 @@ - (MCONNTPOperation *) checkAccountOperation; @end +NS_ASSUME_NONNULL_END #endif |