Skip to content

Commit

Permalink
Change nullability attribute for initWithCoder
Browse files Browse the repository at this point in the history
  • Loading branch information
grigaci committed Sep 22, 2015
1 parent 8204355 commit 79f5cef
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion BIObjCHelpers/Views/TableView/Cell/BITableViewCell.m
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ - (nonnull instancetype)initWithStyle:(UITableViewCellStyle)style reuseIdentifie
return self;
}

- (nonnull instancetype)initWithCoder:(NSCoder *)aDecoder {
- (nullable instancetype)initWithCoder:(NSCoder *)aDecoder {
self = [super initWithCoder:aDecoder];
if (self) {
[self BI_commonSetup];
Expand Down

0 comments on commit 79f5cef

Please sign in to comment.