Skip to content
This repository has been archived by the owner on Jan 13, 2022. It is now read-only.

Commit

Permalink
new style self init
Browse files Browse the repository at this point in the history
  • Loading branch information
jwang committed Jul 10, 2011
1 parent 1f42018 commit 9b52088
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Three20UI/Sources/NSFetchedResultsDataSource.m
Expand Up @@ -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;
Expand Down

0 comments on commit 9b52088

Please sign in to comment.