diff --git a/src/Three20UI/Sources/NSFetchedResultsDataSource.m b/src/Three20UI/Sources/NSFetchedResultsDataSource.m index eca3788589..7015e0a61e 100644 --- a/src/Three20UI/Sources/NSFetchedResultsDataSource.m +++ b/src/Three20UI/Sources/NSFetchedResultsDataSource.m @@ -36,8 +36,8 @@ @implementation NSFetchedResultsDataSource @synthesize entity = _entity; - (id) initWithEntity:(NSEntityDescription *)entity controllerTableView:(UITableView *)controllerTableView{ - - if(self = [super init]){ + self = [super init]; + if(self){ self.entity = entity; self.tableView = controllerTableView;