--- a/cocoaTouch/GravesViewController.m Wed Apr 28 05:58:14 2010 +0000
+++ b/cocoaTouch/GravesViewController.m Thu Apr 29 02:43:28 2010 +0000
@@ -82,9 +82,8 @@
static NSString *CellIdentifier = @"Cell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
- if (cell == nil) {
+ if (cell == nil)
cell = [[[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier] autorelease];
- }
NSString *grave = [[graveArray objectAtIndex:[indexPath row]] stringByDeletingPathExtension];
cell.textLabel.text = grave;