Strip trailing whitespace. Refs #614

This commit is contained in:
Jawwad Ahmad
2012-06-03 22:20:08 -04:00
parent e4882e2e00
commit 10433089a4
19 changed files with 177 additions and 177 deletions

View File

@@ -28,14 +28,14 @@
_awaitingResponse = NO;
_cancelled = NO;
}
return self;
}
- (void)waitForLoad {
_awaitingResponse = YES;
NSDate *startDate = [NSDate date];
while (_awaitingResponse) {
RKLogTrace(@"Awaiting response = %d", _awaitingResponse);
[[NSRunLoop currentRunLoop] runUntilDate:[NSDate dateWithTimeIntervalSinceNow:0.1]];
@@ -114,7 +114,7 @@
- (void)tableController:(RKAbstractTableController *)tableController willDisplayCell:(UITableViewCell *)cell forObject:(id)object atIndexPath:(NSIndexPath *)indexPath
{}
- (void)tableController:(RKAbstractTableController *)tableController didSelectCell:(UITableViewCell *)cell forObject:(id)object atIndexPath:(NSIndexPath *)indexPath
- (void)tableController:(RKAbstractTableController *)tableController didSelectCell:(UITableViewCell *)cell forObject:(id)object atIndexPath:(NSIndexPath *)indexPath
{}
@end