Skip to content
This repository has been archived by the owner on May 3, 2021. It is now read-only.

Commit

Permalink
#94 fix compilation error: 'Nullability specifier 'nonnull' conflicts…
Browse files Browse the repository at this point in the history
… with existing specifier 'nullable'
  • Loading branch information
CAMOBAP committed Jan 29, 2016
1 parent b04b8cf commit c93f602
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Pod/Source/UI/DFImageView.m
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ - (nonnull instancetype)initWithFrame:(CGRect)frame {
return self;
}

- (nullable instancetype)initWithCoder:(NSCoder *)decoder {
- (instancetype)initWithCoder:(NSCoder *)decoder {
if (self = [super initWithCoder:decoder]) {
[self _commonInit];
}
Expand Down

0 comments on commit c93f602

Please sign in to comment.