addressed comments and fixed tests

This commit is contained in:
rcancro
2015-08-21 21:03:40 -07:00
parent c06a6be188
commit 680305704a
17 changed files with 82 additions and 113 deletions

View File

@@ -46,10 +46,10 @@
- (instancetype)initWithChildren:(NSArray *)children
{
self = [super init];
if (self) {
_children = children;
if (!(self = [super init])) {
return nil;
}
_children = children;
return self;
}