From 9713ea5daa44dd276417f8bf42e8c7bbb7706bec Mon Sep 17 00:00:00 2001 From: Alexey Belkevich Date: Mon, 5 Oct 2015 17:43:33 +0300 Subject: [PATCH] Fixed nonnull properties --- Pod/Core/Public/Models/APContact.h | 2 +- Pod/Core/Public/Models/APRecordDate.h | 4 ++-- Pod/Core/Public/Models/APSource.h | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Pod/Core/Public/Models/APContact.h b/Pod/Core/Public/Models/APContact.h index 2ceceaa..66dd049 100755 --- a/Pod/Core/Public/Models/APContact.h +++ b/Pod/Core/Public/Models/APContact.h @@ -21,7 +21,7 @@ @interface APContact : NSObject -@property (nullable, nonatomic, strong) NSNumber *recordID; +@property (nonnull, nonatomic, strong) NSNumber *recordID; @property (nullable, nonatomic, strong) APName *name; @property (nullable, nonatomic, strong) APJob *job; @property (nullable, nonatomic, strong) UIImage *thumbnail; diff --git a/Pod/Core/Public/Models/APRecordDate.h b/Pod/Core/Public/Models/APRecordDate.h index 935ef17..b303a97 100644 --- a/Pod/Core/Public/Models/APRecordDate.h +++ b/Pod/Core/Public/Models/APRecordDate.h @@ -10,7 +10,7 @@ @interface APRecordDate : NSObject -@property (nullable, nonatomic, strong) NSDate *creationDate; -@property (nullable, nonatomic, strong) NSDate *modificationDate; +@property (nonnull, nonatomic, strong) NSDate *creationDate; +@property (nonnull, nonatomic, strong) NSDate *modificationDate; @end \ No newline at end of file diff --git a/Pod/Core/Public/Models/APSource.h b/Pod/Core/Public/Models/APSource.h index c867468..8b96e99 100644 --- a/Pod/Core/Public/Models/APSource.h +++ b/Pod/Core/Public/Models/APSource.h @@ -10,7 +10,7 @@ @interface APSource : NSObject -@property (nullable, nonatomic, strong) NSString *sourceType; -@property (nullable, nonatomic, strong) NSNumber *sourceID; +@property (nonnull, nonatomic, strong) NSString *sourceType; +@property (nonnull, nonatomic, strong) NSNumber *sourceID; @end \ No newline at end of file