Convert all tabs to four spaces. refs #743

This commit is contained in:
Blake Watters
2012-05-17 18:10:59 -04:00
parent fcb973056b
commit 016f13dad0
82 changed files with 2018 additions and 2018 deletions

View File

@@ -32,12 +32,12 @@
@implementation RKJSONParserJSONKit
- (NSDictionary*)objectFromString:(NSString*)string error:(NSError**)error {
RKLogTrace(@"string='%@'", string);
RKLogTrace(@"string='%@'", string);
return [string objectFromJSONStringWithParseOptions:JKParseOptionStrict error:error];
}
- (NSString*)stringFromObject:(id)object error:(NSError**)error {
return [object JSONStringWithOptions:JKSerializeOptionNone error:error];
return [object JSONStringWithOptions:JKSerializeOptionNone error:error];
}
@end