Fix corrupted project file from merge.

This commit is contained in:
Scott Goodson
2015-12-23 12:52:38 -08:00
parent fa4308ba7c
commit 38d9ceb230
3 changed files with 16 additions and 24 deletions

View File

@@ -16,6 +16,16 @@
BOOL _ensureDisplayed;
}
- (instancetype)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
{
return [self initWithNode:nil];
}
- (instancetype)initWithCoder:(NSCoder *)aDecoder
{
return [self initWithNode:nil];
}
- (instancetype)initWithNode:(ASDisplayNode *)node
{
if (!(self = [super initWithNibName:nil bundle:nil])) {