Simplify. Remove unneeded call to method to retrieve controllerId in processSegues... method

This commit is contained in:
Gregory John Casamento 2020-07-19 01:52:19 -04:00
parent 707a6b4c7e
commit fd14a3c591

View file

@ -766,12 +766,11 @@
NSArray *array = [xml nodesForXPath: @"//objects[1]"
error: NULL];
NSXMLElement *objects = [array objectAtIndex: 0]; // get the "objects" section
NSString *src = [self controllerIdWithDocument: xml];
NSArray *connectionsArray = [xml nodesForXPath: @"//connections"
error: NULL];
NSMapTable *mapTable = [self processConnections: connectionsArray
withObjects: objects
controllerId: src];
controllerId: identifier];
[_identifierToSegueMap setObject: mapTable
forKey: identifier];
}