Skip to content

Commit

Permalink
Fixed nonnull properties
Browse files Browse the repository at this point in the history
  • Loading branch information
belkevich committed Oct 5, 2015
1 parent f11b1bf commit 9713ea5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Pod/Core/Public/Models/APContact.h
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
4 changes: 2 additions & 2 deletions Pod/Core/Public/Models/APRecordDate.h
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions Pod/Core/Public/Models/APSource.h
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit 9713ea5

Please sign in to comment.