Implemented nested mapping for structures similar to the BuildBot JSON structure. fixes #112

This commit is contained in:
Blake Watters
2011-06-17 11:55:57 -04:00
parent e9e4c83630
commit 3bf4b7bc0f
18 changed files with 3342 additions and 77 deletions

View File

@@ -71,7 +71,6 @@
NSMutableDictionary* results = [NSMutableDictionary dictionary];
for (NSDictionary* dict in nodes) {
for (NSString* key in dict) {
NSLog(@"Key: %@", key);
id value = [dict valueForKey:key];
id currentValue = [results valueForKey:key];
if (nil == currentValue) {