Fix issues identified by uncrustify's "sp_assign = add" option. Refs #614

This commit is contained in:
Jawwad Ahmad
2012-06-03 23:14:09 -04:00
parent 2cf60ffb86
commit 746f31c26d
6 changed files with 12 additions and 12 deletions

View File

@@ -507,7 +507,7 @@
assertThat(group.name, is(equalTo(@"restkit")));
NSSortDescriptor * sortByName =[[[NSSortDescriptor alloc] initWithKey:@"name" ascending:YES] autorelease];
NSSortDescriptor * sortByName = [[[NSSortDescriptor alloc] initWithKey:@"name" ascending:YES] autorelease];
NSArray * descriptors = [NSArray arrayWithObject:sortByName];;
NSArray * users = [group.users sortedArrayUsingDescriptors:descriptors];
RKTestUser* user = [users objectAtIndex:0];