Fix typo that causes crash.

// FREEBIE
pull/1/head
Matthew Chen 9 years ago
parent c656cdfef0
commit 7c9c4668fe

@ -25,7 +25,7 @@ NS_ASSUME_NONNULL_BEGIN
@implementation OWSTableContents @implementation OWSTableContents
-(instancetype)init { -(instancetype)init {
if (self = [self init]) { if (self = [super init]) {
_sections = [NSMutableArray new]; _sections = [NSMutableArray new];
} }
return self; return self;
@ -61,7 +61,7 @@ NS_ASSUME_NONNULL_BEGIN
} }
-(instancetype)init { -(instancetype)init {
if (self = [self init]) { if (self = [super init]) {
_items = [NSMutableArray new]; _items = [NSMutableArray new];
} }
return self; return self;

Loading…
Cancel
Save