Style touch-up

This commit is contained in:
Blake Watters
2012-11-08 19:26:06 -05:00
parent 56aaf30a73
commit b723788fce

View File

@@ -68,7 +68,7 @@
NSFetchRequest *fetchRequest = [NSFetchRequest fetchRequestWithEntityName:@"Terminal"];
NSEntityDescription *entity = [NSEntityDescription entityForName:@"Airport" inManagedObjectContext:managedObjectStore.persistentStoreManagedObjectContext];
fetchRequest.predicate = [entity predicateForPrimaryKeyAttributeWithValue:airportID];
fetchRequest.sortDescriptors = @[[NSSortDescriptor sortDescriptorWithKey:@"name" ascending:YES]];
fetchRequest.sortDescriptors = @[ [NSSortDescriptor sortDescriptorWithKey:@"name" ascending:YES] ];
return fetchRequest;
}