Remove object literal array access usage

This commit is contained in:
Blake Watters
2012-07-23 11:19:12 -04:00
parent 5af66a4e89
commit 66c9cd5f26
2 changed files with 2 additions and 2 deletions

View File

@@ -60,7 +60,7 @@ static char NSManagedObject_RKManagedObjectStoreAssociatedKey;
}
if ([objects count] == 1) {
return objects[0];
return [objects objectAtIndex:0];
}
return nil;

View File

@@ -109,7 +109,7 @@
self.targetObjectID = [(NSManagedObject *)self.targetObject objectID];
}
}];
}
}
}
- (BOOL)prepareURLRequest