Placing opening braces on a new line for methods to match Apple convention. Refs #614

Used uncrustify's "nl_fdef_brace = add" option to detect issues.
This commit is contained in:
Jawwad Ahmad
2012-06-04 00:36:19 -04:00
parent 46bf6e6295
commit eaa5484b01
139 changed files with 4172 additions and 2086 deletions

View File

@@ -20,11 +20,13 @@
[self.client get:@"/status/user_timeline/RestKit.json" delegate:self];
}
- (void)request:(RKRequest*)request didLoadResponse:(RKResponse *)response {
- (void)request:(RKRequest*)request didLoadResponse:(RKResponse *)response
{
NSLog(@"Loaded JSON: %@", [response bodyAsString]);
}
- (void)dealloc {
- (void)dealloc
{
[super dealloc];
}