cocoaTouch/GravesViewController.m
changeset 3373 c1ff724a5c34
parent 3364 e5403e2bf02c
child 3374 0d522416d97f
--- 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;