Skip to content

Commit

Permalink
removed unnecessary includes
Browse files Browse the repository at this point in the history
  • Loading branch information
BYTEPOETS-MBR committed Feb 26, 2011
1 parent bc182c2 commit 30dda9b
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions Classes/JBAppDelegate.m
Original file line number Diff line number Diff line change
Expand Up @@ -9,14 +9,10 @@
#import "JBAppDelegate.h"
#import "JBResultsViewController.h"
#import "JBConstants.h"

#import "JSONParser.h"
#import "JSONWriter.h"

//#import "JSONKit.h"

#import "CJSONDeserializer.h"
#import "CJSONSerializer.h"
//#import "NSObject+YAJL.h"
#import "SBStatistics.h"

#import "NSObject+Introspection.h"
Expand Down Expand Up @@ -58,7 +54,8 @@ - (void)benchmark {
// Load JSON string
NSString *jsonString = [NSString stringWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"twitter_public_timeline" ofType:@"json"] encoding:stringEncoding error:nil];
NSData *jsonData = [jsonString dataUsingEncoding:dataEncoding];
NSArray *array = (NSArray *)[[CJSONDeserializer deserializer] deserialize:jsonData error:nil];
NSArray *array = (NSArray *)[JSON objectWithData:jsonData options:0 error:nil];




Expand Down

0 comments on commit 30dda9b

Please sign in to comment.